function SetPageWidth()
{
	if( screen.width >= 1024)
	{
		window.document.all.PT.width="1004";
	}
	else if(screen.width <= 800)
	{
		window.document.all.PT.width="778";
	}
	else
	{
	    window.document.all.PT.width="100%";
	}
}


