Thorsten: NN macht mich irre !

Beitrag lesen

OK, hier das wichtigste aus dem Source : NN 4.7 behaupted nun "NAV" sei nicht definiert, vorhanden, was auch immer, unter MSIE funktioniert es. Es wäre super wenn einer von euch eine Idee hat.

function movein(){
  if (moved==1) {moveout();}
  else{
  var cpos=Nav.getLeft();
  cpos+=5;
  Nav.setLeft(cpos);
  if (cpos<0) {
       window.setTimeout("movein()",20);
  }
  if (cpos>=0) {
     Nav.setLeft(0);
      moved=1;
 }
 }

}

function moveout(){
  var cpos=Nav.getLeft();
  cpos-=5;
  Nav.setLeft(cpos);
  if (cpos>-150) {
      window.setTimeout("movein()",20);
  }
  if (cpos<=-150) moved=0;

}

function change(fn){
   if (moved==0) {
      Nav.load(fn);
      movein();
   }else{
      moveout();
   }

}
</script>

</head>

<body text="#000000" bgcolor="#FFFF80" link="#0000EE" vlink="#551A8B" alink="#FF0000" onLoad="if (ie || ns) { createObjects() }">

<div name="Nav" id="Nav" style="position:absolute;left:-150;top:330;width:145;height:120;visibility:visible">
</div>

<A HREF="Home.html" target=Main onMouseOver="Bildwechsel(0,image1on)" onMouseOut="Bildwechsel(0,image1)"><img SRC="Graphics/Home.jpg" height=31 width=126 border=0></A>

</body>
</html>