function popimage(imagesrc,width,height,url){
  var look='width='+width+',height='+height+',top=50, left=50';
  popwin=window.open("","",look)
  popwin.document.open()
  popwin.document.write('<html><head><title>Rafael Jewelers</title></head>\n');
  popwin.document.write('<body leftmargin="0" topmargin="0" marginwidth="0" marginheight="0" bgcolor=="#000000">\n');
  popwin.document.write('<TABLE align=center border="0" cellspacing="0" cellpadding="0" vspace="0" hspace="0" bgcolor="#000000">\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('</body></html>')
  popwin.document.close()
}
