u confused me there.
& how do i link another page to one using a button.[/quote]
Right, it didnt get into the quote box, anyway here it is below
You might take it from the italic statements above that the newly opened full screen can be closed through hitting F-11. Nope. You need to offer the user the ability to close the window. Add this code to the newly opened page:
Close window
That will offer a link that closes the window named "fs". See why I used a name for the page?
If you'd like a button that closes the window, try this:
<FORM>
<INPUT TYPE="button" VALUE="Close the Window" onClick="window.close('fs')">
</FORM>