function PageAutoFit()
{
	if(screen.width <= 1024)
	{
		document.getElementById("Table1").width = 1004;
		document.body.style.margin = 0;
	}
	else
	{
		document.getElementById("Table1").width = 1022;
		document.body.style.marginLeft = 18;
		document.body.style.marginRight = 0;
		document.body.style.marginBottom = 0;
		document.body.style.marginTop = 0;
	}
}

if(document.attachEvent)
  window.attachEvent("onload",  PageAutoFit);  
else
  window.addEventListener('load',  PageAutoFit,  false);
