How can I turn off the full screen mode without closing the browser window?
I'm using a javascript that turns the browser window into the full screen mode, without title bar! It's great for my flash apresentation page but, when it gets to the homepage, I want the maximized window again. Can anyone help me with this little problem? Thanks!
[274 byte] By [
Rui M] at [2007-11-17 11:58:07]

# 1 Re: How can I turn off the full screen mode without closing the browser window?
Well, you can reduce the browser window in size so that it doesn't dominate the desktop, but it doesn't contain any toolbar, menubar, statusbar, etc.
<html>
<head>
<script language="JavaScript">
function createwin(){
newWin = window.open("foo.html", "mywin", "fullscreen");
setTimeout("resizewin()", 6000);
}
function resizewin(){
newWin.resizeTo(500,500);
}
</script>
</head>
<body onload="createwin()">
</body>
</html>