var IEminWidthDocument = document;
var winIE = (navigator.userAgent.indexOf("Opera")==-1 && (IEminWidthDocument.getElementById && IEminWidthDocument.documentElement.behaviorUrns)) ? true : false;

function bodySize(){
	if(winIE && IEminWidthDocument.documentElement.clientWidth) {
		sObj = IEminWidthDocument.getElementsByTagName("body")[0].style;
		sObj.width = (IEminWidthDocument.documentElement.clientWidth < 990) ? "990px" : "100%";
	}
}
function init(){
	if(winIE) { bodySize(); }
}
onload = init;
if(winIE) { onresize = bodySize; }