// JavaScript Document


<!--
window.onload=function() { maxIt()};
function maxIt()
{


var width = screen.availWidth;
var height = screen.availHeight;
window.resizeTo(width,height);
window.moveTo(0,0) 

}
//-->