Hi,
For opening the browser in full screen mode. It's easy. Copy and paste this code into the page's HEAD tag section:
<script>
<!--
window.open("bigpage.html","fls","fullscreen,scrol lbars")
//-->
</script>
That format will give you scrollbars. If you don't want scrollbars, just alter the code a to this:
<script>
<!--
window.open("bigpage.html","fls","fullscreen=yes")
//-->
</script>
Note that the "fls" is simply a name I assigned to the page.
Now to close add this code to the newly opened page:
<A HREF="#" OnClick="window.close('fs')">Close window</A>
That will offer a link that closes the window named "fls".
|