function popimage(imagesrc,width,height){
  var winleft = (screen.width - width) / 2;
  var wintop = (screen.height - height) / 2 - 20;
  var look='width='+width+',height='+height+',top='+wintop+', left='+winleft+',resizable=no,scrollbars=no';
  popwin=window.open("","",look)
  popwin.document.open()
popwin.document.write('<html><head><title>MichaelHairDesign.org</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="0" vspace="0" hspace="0">\n');
popwin.document.write('<tr><td valign="top" align=center><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()
}
