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"></div>');
    generator.document.write('</body></html>');
    generator.document.close();
}
function poponload(url)
{
    inquirer = window.open(url,'INQUIRER.net','fullscreen=0,location=0,resizable=0,scrollbars=0,menubar=0,status=1,t itlebar=0,toolbar=0,width=825,height=630,left=240,top=100');
}
