Open this Window to Fullscreen

Close this Window (only use when on Fullscreen mode)

Another great script which is, unfortunately, only available to MSIE users. This script opens a new window with no properties. This is perfect for those of you who have the "Source Protector" or a password script and don't want viewers to be able to bypass the script by selecting File->View Source. Just put this script on one page and link it to the page you wish to be protected. This is a really small code, so it should be easy for you to manipulate, color coding is provided though.
The source..


<script language="Javascript">
<!--
// please keep these lines on when you copy the source
// made by: Nicolas - http://www.javascript-page.com

function OpenFull(where2) {
if (document.all) window.open(where2,"Full_Screen_Window","fullscreen=yes");
else alert("Sorry, but you can only open to FullScreen with Internet Explorer.");
}

//-->
</script>

<a href="javascript:OpenFull('open2full.html');">Open this Window to Fullscreen</a><br>
<br>
<a href="javascript:window.close();">Close this Window (only use when on Fullscreen mode)</a>

Color coding..


The code insert you need for each Fullscreen window is in this color. What url the viewer goes to is determined by putting it in place of the text with this color.
You do not need a "window close" option for the viewer, however there is no way to close the window once you open it without having something with a "window.close" code insert. So viewers will most likely not come back unless you have this somewhere on your page..
Nic's JavaScript Page