  function open_img(file,width,height)
  {
   l=(screen.width-width)/2;
   t=(screen.height-height)/2;
   atrib='left=' + l + ',top=' + t + ',width=' + width + ',height=' + height + ',menubar=no,resizable=no';
   window.open(file,'',atrib);
  }
