function popimage(title,imagesrc,width,height){
  var look='width='+width+',height='+height+',top=100, left=150,resizable,scrollbars';
  popwin=window.open("","",look)
  popwin.document.open()
  popwin.document.write('<html><head><title>'+title+'</title></head>\n');
  popwin.document.write('<body leftmargin="0" topmargin="0" marginwidth="0" marginheight="0">\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 look='width='+width+',height='+height+',top=100, left=150,resizable,scrollbars';
  popwin=window.open("","",look)
  popwin.document.open()
  popwin.document.write('<html><head><title>'+title+'</title></head>\n');
  popwin.document.write('<body leftmargin="0" topmargin="0" marginwidth="0" marginheight="0">\n');
  popwin.document.write('<FORM>\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">');
  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"><img src="'+imagesrc+'" border=0></td></tr>\n');
  popwin.document.write('</table>\n');

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