/*	min-width страницы	*/
var winIE = (navigator.userAgent.indexOf("Opera")==-1 && (document.getElementById && document.documentElement.behaviorUrns)) ? true : false;

function bodySize() {
	if(winIE && document.documentElement.clientWidth) {
		sObj = document.getElementById("layout").style;
		sObj.width = (document.documentElement.clientWidth<1003) ? "1003px" : "100%";
	}
}

onload = loader;
if(winIE) { onresize = bodySize; }
function loader(){ 	if(winIE) { bodySize(); }	}