function open1(url, w, h)
    {
      mreplywin = window.open('','mw4'+Math.round(1000*Math.random()),'width=' + (w) + ',height=' + (h) + ',scrollbars=0,status=0,resizeable=1,toolbar=0,location=0,directories=0,menubar=0');
      mreplywin.location.href = url;
      mreplywin.focus(); // bring our subwindow to the front
      if (mreplywin.opener == null) mreplywin.opener = window;
    }

var need_remember = false;
function screeez(){
 return;
 var el = document.getElementById('scree');
 var xx = document.getElementById('screex');
 // sdfsdfsdf
 if (el.width)
 {
  if (el.width < 975 && xx.clientWidth > 3)
   {
    el.width = el.width + 1;
    need_remember = true;
    setTimeout('screeez()', 20);
    return;
   } else if ( el.width > 875 && xx.clientWidth < 3 )
   {
    el.width = el.width - 1;
    need_remember = true;
    setTimeout('screeez()', 20);
    return;
   } else if (need_remember) {
    // remember
    // alert(el.width);
    // alert(xx.clientWidth);
    // el.src = '/sizeme/' + el.width;
    return;
   };
   // alert(xx.clientWidth);
 };
};

