Sorry for not giving proper explanation..
<html>
<head>
<script language="javascript" >
function fun1(){
alert(" inside fun1");
Frame1.document.write("<html>");
Frame1.document.write("<body>");
Frame1.document.write("<h1>TEST1</h1>");
Frame1.document.write("</body>");
Frame1.document.write("</html>");
}
function fun2(){
alert(" inside fun2");
frame2.document.write("<html>");
frame2.document.write("<body>");
frame2.document.write("<h1>TEST2</h1>");
frame2.document.write("</body>");
frame2.document.write("</html>");
}
</script>
<frameset frameborder=0 border=0 rows="100,*">
<frame frameborder=0 src="javascript

arent.fun1()" border=0 name="Frame1" scrolling="no" noresize marginwidth="0" marginheight="0"> </frame>
<frame frameborder=0 src="javascript

arent.fun2()" border=0 name="frame2" scrolling="no" marginwidth="0" marginheight="0" > </frame>
</frameset>
</head>
</html>
what this html page is supposed to do is.. throw a frameset with two frames and each frame should call the corresponding JavaScript function to create the content for that particular frame.
Kindly save this html file and try to open in IE and then Netscape 6.2 you will see the problem...
Netscape will not show anything..
kindly let me know if you are able to catch anything wrong with my code or with Netscape
thanks a lot in advance