Guenter Huerkamp wrote:
> Can someone tell me why my banking site produce an empty page with
> mozilla build 20020228.
> Thanks
>
>
> <script language="JavaScript1.2">
> var ns4 = (document.layers) ? 1 : 0;
> var ie4 = (document.all) ? 1 : 0;
>
> if(ie4){document.write('<frameset border="0" rows="90,40,*,42">');}
> if(ns4){document.write('<frameset border="0" rows="93,40,*,45">');}
> </script>
Because your code here says: "If the browser is Netscape 4, do this. If
it is IE4, do that." However, Mozilla is neither Netscape 4 nor IE4. So
your code does nothing.