		// Set container width - workaround for IE
		if(document.body.clientWidth) {
			sObj = document.getElementById("container").style
			if (document.body.clientWidth>1200) {
				sObj.width = "1200px";
			}
			else if (document.body.clientWidth<810) {
				sObj.width = "770px";
			}
			else {
				sObj.width = "100%" ;
			}
		}
