function popwin(img, zw, zh)
{
    var generator=window.open('','name', 'height='+zh+' ,width =' + zw);
  
    generator.document.write('<html><head><title>Popup</title>');
    generator.document.write('<link rel="stylesheet" href="style.css">');
    generator.document.write('</head><body leftmargin="0" topmargin="0" marginwidth="0" marginheight="0">');
    generator.document.write('<div align="center" id="zoomimg"><img src="'+img+'" border="0" oncontextmenu="alert(\'If you wish to have a copy of this image, you may send your request to syndication@inquirer.net. Thank you\');return false"></div>');
    generator.document.write('</body></html>');
    generator.document.close();
}
