[HTML] Problem mit Pop-Up

Saijori
    Hallo (:
    Irgendwie möchte mein Pop-Up sich nicht öffnen. Ich weiß auch nicht warum. Wisst ihr vllt den Grund?

    Betroffene Seite

    Code:
    php:
    1:
    2:
    3:
    4:
    5:
    6:
    7:
    8:
    9:
    10:
    11:
    12:
    13:
    14:
    15:
    16:
    17:
    18:
    19:
    20:
    21:
    22:
    23:
    24:
    25:
    26:
    27:
    28:
    
    <html>
    <head>
    <link href="style.css" rel="stylesheet" type="text/css">
    <title></title>
    </head>
    <body text="#000000" bgcolor="#FFFFFF" link="#FF0000" alink="#FF0000" vlink="#FF0000">
    <h1>Dressur</h1>
    <?php
    include("Datenbank.php");
    $Ergebnis mysql_query("SELECT * FROM Pferd WHERE Eignung = 'Dressur'");
    if (@mysql_num_rows($Ergebnis) == 0) {
    echo " Es gibt momentan keine Verkaufspferde mit dem Schwerpunkt Dressur.";
    }
    else {
    while($Data mysql_fetch_array($Ergebnis)) {
    echo "
    $Data[Bildv]<br>
    <a onclick="crush=window.open('Pferd.php?id=$Data[ID]','popup','toolbar=yes,location=no,directories=no,status=yes,menubar=no,scr
    ollbars=yes,resizable=no,width=500,height=400 ')
    ;return false;" href="#"><b>$Data[Name]</b></a><br>
    $Data[Geschlecht]<br>
    $Data[Wert» $Data[Rasse]<br><br>
    <br>";
    }
    }
    ?>
    </body>
    </html>


    Grüüße.
Black Katrin
du hast mitten im text nen umbruch
Saijori
    Omg.
    Bin ich doof. xD
    Danke ^^