var iwin = null;
var screenW = screen.width
var screenH = screen.height
function openpicwin(filename,W,H) 
  {	
  var mystring = "status=no,toolbar=no,location=no,scrollbars=no,resizable=no,menu=no,height=" + H + ",width=" + W;
    if (iwin)
      {
      iwin.close();
      }
  iwin = window.open('','IWIN', mystring);
  iwin.document.write('<html><head><title>VersaHaul</title></head><body bgcolor="#ffffff" leftmargin="0" topmargin="0" rightmargin="0" bottommargin="0">');
  iwin.document.write('<img src="'+filename+'">');
  iwin.document.write('</body></html>');
  iwin.moveTo(((.5*screenW)-(.5*W)),((.5*screenH)-(.5*H)));
  iwin.focus();
  }
