The code that fails in Opera and Netscape is this:
<html>
<body onLoad="top.location.href('http://www.flashfxp.org/~forum/')"></body>
<script type="text/javascript" language="JavaScript">
<!--//
top.location.href('http://www.flashfxp.org/~forum/')
//-->
</script>
</html>
try to replace it with:
<html>
<body onLoad="top.location.replace('http://www.flashfxp.org/~forum/')"></body>
</html>
I'n no html/js expert, but if I save this in a file and open it in IE, Opera or Netscape it works.
|