Try using this JavaScript instead of the other. This will eliminate all aspects of the browser in IE but will leave the outline of the browser in Netscape.

<SCRIPT language="JavaScript">
< !--
function start()
{
remote = window.open("yourpage.html","","fullscreen,scrollb ars");
if (remote.opener == null) remote.opener = window;
remote.opener.name = "opener";
}
//-->
</SCRIPT>

Put this on the page that preceeds the page that you want to be full screen.

Stinger