function popimage(title,imagesrc,width,height){
  var winleft = (screen.width - width) / 2;
  var wintop = (screen.height - height) / 2;
  var look='width='+width+',height='+height+',top='+wintop+', left='+winleft+',resizable,scrollbars';
  popwin=window.open("","",look)
  popwin.document.open()
  popwin.document.write('<html><head><title>'+title+'<\/title><\/head>\n');
  popwin.document.write('<body style="margin: 0px;">\n');
  popwin.document.write('<TABLE align=center border="0" cellspacing="0" cellpadding="1" vspace="0" hspace="0">\n');
  popwin.document.write('<tr><td valign="top" align=center bgcolor="#FFFFFF"><img src="'+imagesrc+'" border=0><\/td><\/tr>\n');
  popwin.document.write('<tr><td valign="top" align=center><br>');
  popwin.document.write('<FORM><INPUT type="Button" VALUE="Close Window" onClick="self.close()"><\/FORM>\n');
  popwin.document.write('<\/td><\/tr>\n');
  popwin.document.write('<\/table>\n');
  popwin.document.write('<\/body><\/html>')
  popwin.document.close()
}

function popimage2(title,imagesrc,width,height,url){
  var winleft = (screen.width - width) / 2;
  var wintop = (screen.height - height) / 2;
  var look='width='+width+',height='+height+',top='+wintop+', left='+winleft+',resizable,scrollbars';
  popwin=window.open("","",look)
  popwin.document.open()
  popwin.document.write('<html><head><title>'+title+'<\/title><\/head>\n');
  popwin.document.write('<body style="margin: 0px;">\n');
  popwin.document.write('<FORM>\n');

  popwin.document.write('<TABLE align=center border="0" cellspacing="0" cellpadding="1" vspace="0" hspace="0">\n');
  if (title != "wait"){
     popwin.document.write('<tr><td valign="top">');
     popwin.document.write('<INPUT type="image" src="'+url+'/images/close.gif" border=0 onClick="self.close()">\n');
     popwin.document.write('<\/td><\/tr>\n');
  }
  popwin.document.write('<tr><td valign="top" align=center bgcolor="#FFFFFF"><a href="javascript:window.close();"><img src="'+imagesrc+'" border=0><\/a><\/td><\/tr>\n');
  popwin.document.write('<\/table>\n');

  popwin.document.write('<\/FORM>\n');
  popwin.document.write('<\/body><\/html>')
  popwin.document.close()
}
