// открывает попап шириной iw и высотой ih
  function show_img(im_path, iw, ih) {
          if(!im_path)return false;
          l = ( screen.width - iw )/2;
          ta = ( screen.height - ih )/2;
          //ta = 500;
          window.open(im_path,"_blank","width="+iw+", height="+ih+", directories=no,location=no,menubar=no,scrollbars=no,status=yes,toolbar=no,resizable=yes,top="+ta+",left="+l);
  }// show_img()

// ресаизит текущее окошко

  function resize_win(w,h) {

        window.resizeTo(w+60,h+200);
        var ih,iw;
        ih = document.body.clientHeight;
        iw = document.body.clientWidth;
        //alert(iw+'-'+ih);



  }// resize_win()
