window.onload = function(){
	var windowWrapper = document.getElementById("windowWrapper");
	var windowDiv = document.getElementById("window");
	var container = document.getElementById("container");

	//IE
	if (!window.innerWidth){
		//strict mode
		if (!(document.documentElement.clientWidth == 0)){
			w = document.documentElement.clientWidth;
			h = document.documentElement.clientHeight;
		}
		//quirks mode
		else {
			w = document.body.clientWidth;
			h = document.body.clientHeight;
		}
	}
	//w3c
	else {
		w = window.innerWidth;
		h = window.innerHeight;
	}

	// if window width < 1022px, set marginLeft=0 & textAlignLeft=0
	if (w<1018){
	windowWrapper.style.paddingRight="0px";
	windowDiv.style.marginLeft="0px";
	container.style.textAlign="left";//For IE
	}
	
	else{
	windowWrapper.style.paddingRight="150px";
	windowDiv.style.marginLeft="auto";
	container.style.textAlign="center";//For IE
	}

}

window.onresize = window.onload;



