[HTML] PopUp immer gleiche seite?!

Alex96
hey ich hab ein kleines große problem

>>Warmblüter<<

PS: es giebt bisher nur die seite von Miss Womba

eagal welches pferd ich anklicke es öffniet sich immer nur die seite von jim knopf und dann kommt ein fehlermeldung

der code

code:
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:
29:
30:
31:
32:
33:
34:
35:
36:
37:
38:
39:
40:
41:
42:
43:
44:
45:
46:
47:
48:
49:
50:
51:
52:
53:
54:
55:
56:
57:
58:
59:
60:
61:
62:
63:
64:
65:
66:
67:
68:
69:
70:
71:
72:
73:
74:
75:
76:
77:
78:
79:
80:
81:
82:
83:
84:
85:
86:
87:
88:
89:
90:
91:
92:
93:
94:
95:
96:
97:
98:
99:
100:
101:
102:
<html>
<head>

  <meta content="text/html; charset=ISO-8859-1" http-equiv="content-type">
  <title>Warmbl&uuml;ter</title>


</head>
<body>

<br>

<br style="font-family: Verdana;">

<table style="background-color: rgb(255, 255, 255); width: 540px; height: 360px; font-family: Verdana; text-align: left; margin-left: auto; margin-right: auto;" border="0" cellpadding="0" cellspacing="3">

  <tbody>

    <tr>

      <td style="text-align: center;">



      <script language="JavaScript">
function eKiwi() {
fenster = window.open(" http://rhkolibrie.rh.funpic.de/pferde/sanluis.html ","PopUp","width= 800 ,height= 600 ,menubar=no,toolbar=no,scrollbars=no,status=no,resizable=no,location=no,hotkeys=no")
}
      </script>

      <a href="JavaScript:eKiwi()"><img src="http://rhkolibrie.rh.funpic.de/pferde/bilder/sanluis.gif" border="0"></a>

      <span style="font-weight: bold; font-style: italic; text-decoration: underline;">
      <br>

San Luis<br>

      </span><small>Oldenburger<br>

Hengst<br>

7 Jahre</small></td>

      <td style="text-align: center;">



      <script language="JavaScript">
function eKiwi() {
fenster = window.open(" http://rhkolibrie.rh.funpic.de/pferde/misswomba.html ","PopUp","width= 800 ,height= 600 ,menubar=no,toolbar=no,scrollbars=no,status=no,resizable=no,location=no,hotkeys=no")
}
      </script>

      <a href="JavaScript:eKiwi()"><img src="http://rhkolibrie.rh.funpic.de/pferde/bilder/misswomba.gif" border="0"></a>
      <span style="font-weight: bold; font-style: italic; text-decoration: underline;">
      <br>

Miss Womba</span><br>

      <small>Holsteiner<br>

Stute<br>

9 Jahre</small></td>

      <td style="text-align: center;">
 


      <script language="JavaScript">
function eKiwi() {
fenster = window.open(" http://rhkolibrie.rh.funpic.de/pferde/jimknopf.html ","PopUp","width= 800 ,height= 600 ,menubar=no,toolbar=no,scrollbars=no,status=no,resizable=no,location=no,hotkeys=no")
}
      </script>

      <a href="JavaScript:eKiwi()"><img src="http://rhkolibrie.rh.funpic.de/pferde/bilder/jimknopf.gif" border="0"></a>
      <span style="font-weight: bold; font-style: italic; text-decoration: underline;"><br>

Jim Knopf<br>

      </span><small>Mecklenburger<br>

Wallach<br>

13 Jahre</small></td>

    </tr>

  </tbody><tbody>

  </tbody>
</table>

<br>

<br>

<br>

</body>
</html>
Skadi

Ich entdecke zwar Nichts Auffälliges, aber ich empfehle diese
Version des Pop-Ups. ;D

Mfg; Skadi
Thorim
du müsstest deine JavaScript-Funktionen alle anderst bennen, die heißen ja alle eKiwi(), somit überschreibst du jedesmal die vorherige "Version" der Funktion

würd das aber eher so machen
code:
1:
2:
3:
4:
5:
6:
function eKiwi( param )
{
 fenster = window.open("http://rhkolibrie.rh.funpic.de/pferde/" + param + ".html ","PopUp","width= 800 ,height= 600 ,menubar=no,toolbar=no,scrollbars=no,status=no,resizable=no,location=no,hotkeys=no")
}


und dann die Aufrufe mit href="java script:eKiwi('sanluis')" (dann haste nur 1 Funktion und nicht für jedes Pferd eine eigene)
Alex96
Skadi: oke danke ich versuch den mal.

Thorim: oh supper ich kuk gleich mla obs klapt

vilen dank euch beiden!

hehe noch ne frage an Thorim:
also ich füg den wo ein?
code:
1:
2:
3:
4:
function eKiwi( param )
{
 fenster = window.open("http://rhkolibrie.rh.funpic.de/pferde/" + param + ".html ","PopUp","width= 800 ,height= 600 ,menubar=no,toolbar=no,scrollbars=no,status=no,resizable=no,location=no,hotkeys=no")
}