var d = document; 

function bodySize(){ 
	if(ie && d.documentElement.clientWidth) { 
		sObj = getElement("FixWidth");
		sObj.style.width = (d.documentElement.clientWidth<1100) ? "1100px" : "100%";
	} 
} 

function init(){ 
	if(ie) { bodySize(); } 
} 
onload = init; 
if(ie) { window.attachEvent("onresize", bodySize); }
