var d = document;
var winIE = (navigator.userAgent.indexOf('Opera')==-1 && (d.getElementById && d.documentElement.behaviorUrns)) ? true : false;

function bodySize(){
   if(winIE && d.documentElement.clientWidth) {
    sObj = d.getElementsByTagName('body')[0].style;
    sObj.width = (d.documentElement.clientWidth<1200) ? '1200px' : '100%';
		//alert('hello');
   }
}
function initq(){
  if(winIE) { bodySize(); }
}

//onload = initq;
if(winIE) { onresize = bodySize; }
//alert('hrr');

