// JavaScript Document

function centerPage() {
    if (window.screen.width <= 1024) {
		document.write('<style type="text/css">');
		document.write('#container { overflow: hidden; width: 1104px; margin-left: -104px; margin-right: 0; }');
		document.write('</style>');
	}
	/*
	var cont1 = document.getElementById("container");
	
    if (window.screen.width <= 1024) {
		cont1.style.overflow = "hidden";
		cont1.style.width = "1112px";
		cont1.style.marginLeft = "-104px";	
		cont1.style.marginRight = "0px";	
	}
	*/
}

centerPage();

/*
var prevOnLoad2 = window.onload;
window.onload = function() {
	if (prevOnLoad2) prevOnLoad2();
	centerPage();
};
*/


