View Single Post
Old 09-01-2005, 06:00 AM   #2 (permalink)
kayla
Member
 
Join Date: Jun 2005
Location: Tampa, Fla
Posts: 37
Default

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".
kayla is offline   Reply With Quote
Sponsored Links