back to Popup Windows: Full Screen
Full Screen Window
This full screen window (if you came from our
popup window tutorial) was opened with this script:
<SCRIPT TYPE="text/javascript">
<!--
function popup(mylink, windowname)
{
if (! window.focus)return true;
var href;
if (typeof(mylink) == 'string')
href=mylink;
else
href=mylink.href;
window.open(href, windowname, ',type=fullWindow,fullscreen,scrollbars=yes');
return false;
}
//-->
</SCRIPT>