//var winIE = (navigator.userAgent.indexOf(”Opera”)==-1 && (d.getElementById && d.documentElement.behaviorUrns)) ? true : false;
  winIE = true;
  
   function min_width_for_IE(){
	   if(winIE && document.documentElement.clientWidth) {
	   var header = document.getElementById('header').style;
	   var menu = document.getElementById('menu').style;
	   var content = document.getElementById('content').style;
	   var footer = document.getElementById('footer').style;
	   
	   do_it = (document.documentElement.clientWidth<=1024);
	   
	   header.width = do_it ? '1004px' : '100%';
	   menu.width = do_it ? '1004px' : '100%';
	   content.width = do_it ? '1004px' : '100%';
	   footer.width = do_it ? '1004px' : '100%';
		}
   }
   //function init(){
   ///if(winIE) { bodySize(); }
   //}
   onload = min_width_for_IE;
   //if(winIE) {
   onresize = min_width_for_IE; 
   //}