var mc;
function maxwidthcorrect(who)
 {
   /* Ширина всего документа и главной таблицы */
   var RealWidthBody   = document.getElementById('Mbody').clientWidth;
   var RealWidthTable  = document.getElementById('body').clientWidth;
   var RealHeightBody  = document.getElementById('Mbody').clientHeight;
   var RealHeightTable = document.getElementById('body').clientHeight;
   /* Объект (style) - продолжение фона «подвала» */
   var FooterDIV       = document.getElementById('mydiv').style;

   /* Позиционируем вправо */
   if (RealWidthBody>RealWidthTable) {FooterDIV.display = ''; FooterDIV.width=RealWidthBody-RealWidthTable;} else {FooterDIV.display = 'none';}

   if (who=='main')
     {
        FooterDIV.top  = RealHeightTable-115;
        FooterDIV.left = RealWidthTable;
     }
     else
     {
        /* setting 2nd */ if (FooterDIV.backgroundImage != 'url(images/footer_bg_combo.gif)') FooterDIV.backgroundImage = 'url(images/footer_bg_combo.gif)';
        /* setting 2nd */ FooterDIV.backgroundColor = '#000000';
        /* setting 2nd */ FooterDIV.height='296';
        FooterDIV.top = RealHeightTable-296;
        FooterDIV.left = RealWidthTable;
     }

   /* correct width */   if (RealWidthBody>1208)
   /* correct width */     {
   /* correct width */      document.getElementById('body').width=1208;
   /* correct width */     }
   /* correct width */     else
   /* correct width */     {
   /* correct width */       if (RealWidthBody<952)
   /* correct width */         {
   /* correct width */          document.getElementById('body').width=952;
   /* correct width */         }
   /* correct width */         else
   /* correct width */         {
   /* correct width */          document.getElementById('body').width=RealWidthBody;
   /* correct width */         }
   /* correct width */     }

   clearTimeout(mc);
   mc=setTimeout("maxwidthcorrect('"+who+"')", 100);
 }


function openwindow (filename, w, h)
  {
    var left=(window.screen.width/2)-(w/2);
    var Top=(window.screen.height/2)-(h/2) - 100;
    var desktop = window.open (filename, "_blank","toolbar=no,location=no,status=no,Left="+left+",Top="+Top+",menubar=no,scrollbars=no,resizable=no, width="+w+", height="+h+"");
  }
  
function openthiswindow(idd, pic, w, h)
  {
    document.getElementById(idd).src="./message_picture/"+pic;
    document.getElementById(idd).style.width=w;
    document.getElementById(idd).style.height=h;
  }
