Opening A Page In Fullscreen Mode
You can see a page opened fullscreen mode here.
Dreamweaver users can download the free MFX_FullWindow extension from the Exchange. Those who don't use Dreamweaver can try the following JavaScript to open a window in fullscreen mode.
Add the following JavaScript to the document's <head>:
<script language="Javascript">
< !--
// ***********************************************
// AUTHOR: WWW.CGISCRIPT.NET, LLC
// URL: http://www.cgiscript.net
// Use the script, just leave this message intact.
// Download your FREE CGI/Perl Scripts today!
// ( http://www.cgiscript.net/scripts.htm )
// ***********************************************
function aceMaximize(){
window.moveTo(0,0)
window.resizeTo(screen.width,screen.height)
}
//-->
< /script>
And add the following onLoad event to the <body> tag:
<body onLoad="aceMaximize()">