Open Full Screen

This page was targeted to a new window using TARGET="top" on the previous page. The value for target can be anything to force a new window, such as TARGET="new" or TARGET="beans".

However, when a new window opens on top of another, the new window will be at a reduced size, not the full size as the page was originally sized. The code below was placed in the HEAD of this document, to insure that it opened full screen.



<script language="javascript">

window.moveTo(0,0);
window.resizeTo(screen.availwidth,screen.availheight);

</script>