<!--
// Author  : Mark Richardson (www.dark-moon.net) 2006
// This script should be included in the HEAD section of the page. It forces the window
// containing this script to fill the entire screen.

window.moveTo(0,0);
if(navigator.appName == 'Netscape')
{
  window.outerHeight = screen.availHeight;
  window.outerWidth = screen.availWidth;
}
else
{
  window.resizeTo(screen.availWidth,screen.availHeight);
}
//-->
