top.window.moveTo(0,0);

if (document.all) 
{
	top.window.resizeTo(screen.Width,screen.Height);
}
else 
	if (document.layers||document.getElementById) 
	{
		if (top.window.outerHeight<screen.Height||top.window.outerWidth<screen.Width)
		{
			top.window.outerHeight = screen.Height;
			top.window.outerWidth = screen.Width;
		}
	}





PUT THIS LINE IN INDEX.HTML <HEAD>

<script type="text/javascript" language="JavaScript1.2" src="maximize.js"></script>
