function OnLoad()
{
	/*
	if( document.body.clientWidth < document.getElementById( "wrapper" ).clientWidth )
	{
		
		
		window.scroll( ( document.getElementById( "wrapper" ).clientWidth - document.body.clientWidth ) / 2 , 0 );
	
	
	}
	*/
	
	//if( document.body.clientWidth < document.getElementById( "wrapper" ).clientWidth )
	//{
		//document.body.style.overflowX = 'auto';

		//alert( document.documentElement.scrollTop );

		if( document.body.clientWidth > 1152 )
		{
			//判斷視窗是否大於wrapper所設的大小
			document.getElementById( "wrapper" ).style.width = '1152' + 'px';
		}
		else if( document.body.clientWidth < 980 )
		{
			//判斷視窗是否小於container所設的大小
			document.getElementById( "wrapper" ).style.width = '980' + 'px';
			
		}
		else
		{
			//其餘的狀況
			document.getElementById( "wrapper" ).style.width = document.body.clientWidth + 'px';
		}
		
		//捲到頁面中間
		window.scroll( ( document.getElementById( "wrapper" ).clientWidth - document.body.clientWidth ) / 2 , document.documentElement.scrollTop );
	//}

}

window.onresize = OnLoad;
