Hi,<br><br>i tried for hours now, but nothing helped.<br>I use the following JS-Code to create a new document in a frame, that should run some JS-functions (of course without the linenumbers):<br><br>(01) open();<br>(02) writeln("<html>"
;<br>(03) writeln("<head>"
;<br>(04) writeln("<title>Verlauf</title>"
; <br>(05) writeln("<link rel=stylesheet type=\"text/css\" href=\"verlauf.css\">"
;<br>(06) write("<script language=\"JavaScript\" src=\"verlauf.js\" type=\"text/javascript\">"
;<br>(07) write("</script>"
;<br>(08) writeln("</head>"
;<br>(09) writeln("<body>"
; <br>[...] Here are the Links calling a JS-function<br>(10) writeln("</body>"
;<br>(11) writeln("</html>"
;<br>(12) close();<br><br>The functions called between 09 and 10, are in the file "verlauf.js". <br>With IE everything's OK. But Netscape (both 4.x and 6b) seems to filter the "write();"-calls and ignores the lines 06 and 07, what causes the function-calls between 09 and 10 fail, 'cause the original-function could not be found.<br>What can i do to make Netscape allow lines 09 and 10 (I have JavaScript enabled in the Netscape-Options, so this cannot be the problem)?<br><br>I hope, someone will help me, it's really important.