xNeTworKx: Opera6, was ist so schwer an target="iframe" zu verstehen ?

Beitrag lesen

Hallo,
also ich glaube, daß am Code nichts ungewöhliches ist .
Hier die Datei (DIE SICH IM IFRAME BEFINDET), die das Popup öffnet

<html>
<head>
<title>Fotos</title>
<script language="JavaScript" type="text/javascript">
  function oeffnen()  {
  Fenster = window.open("fotos_auswahl.html","Zweitfenster","width=145, height=400, resizable=yes, scrollbars=yes")
  }
</script>
</head>
<body bgcolor="black" onLoad="javascript:oeffnen()">
</body>
</html>

------------------------
Hier das Popup :

<html>
<head>
<style type="text/css">
img {border:0px}
 body {font-family:Arial Black; font-size:12px; color:#00ff00;
  scrollbar-base-color:#000000;
  scrollbar-3dlight-color:#FFFFFF;
  scrollbar-arrow-color:#00ff00;
  scrollbar-darkshadow-color:#000000;
  scrollbar-face-color:#00af00;
  scrollbar-highlight-color:#FFFFFF;
  scrollbar-shadow-color:#000000;
  scrollbar-track-color:#000000;
  }
</style>
<script language="JavaScript">

self.moveTo(screen.width - 200, screen.height - 600);

normal1 = new Image();
normal1.src = "legokleindark.jpg";
highlight1 = new Image();
highlight1.src = "legoklein.jpg";

normal2 = new Image();
normal2.src = "lego2kleindark.jpg";
highlight2 = new Image();
highlight2.src = "lego2klein.jpg";

normal3 = new Image();
normal3.src = "party1kleindark.jpg";
highlight3 = new Image();
highlight3.src = "party1klein.jpg";

function Bildwechsel(Bildnr,Bildobjekt)
       {
   window.document.images[Bildnr].src = Bildobjekt.src;
       }
 </script>
<title>Fotos</title>
</head>
<body bgcolor="black">
<a href="lego.html" target="iframe" onMouseOver="Bildwechsel(0,highlight1)"
onMouseOut="Bildwechsel(0,normal1)"><img src="legokleindark.jpg"></a>

<a href="lego2.html" target="iframe" onMouseOver="Bildwechsel(1,highlight2)"
onMouseOut="Bildwechsel(1,normal2)"><img src="lego2kleindark.jpg"></a>

<a href="party1.html" target="iframe" onMouseOver="Bildwechsel(2,highlight3)"
onMouseOut="Bildwechsel(2,normal3)"><img src="party1kleindark.jpg"></a>

</body>
</html>