// Place in head of document: What it does, creates a new page to popup

<!--
function coupon_popup(image_path, style_to_use, id_name)
{
 var generator=window.open('','Cattails Coupon','height=400,width=700,status=1');
 generator.focus();
  generator.document.write('<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.1//EN" "http://www.w3.org/TR/xhtml11/DTD/xhtml11.dtd">');
    generator.document.write('<html xmlns="http://www.w3.org/1999/xhtml">');

 generator.document.write('<html><head><title>Cattails Coupon</title>');
 generator.document.write('<link href="../_CSS/Coupon_Popup.css" rel="stylesheet" type="text/css" />');
 generator.document.write('</head><body>');
 generator.document.write('<div class="PAGEHOLDER">');
 generator.document.write('<img src= "'+ image_path +'" id="' + style_to_use +'" />');
 generator.document.write('</img');
 generator.document.write('</div>');
 generator.document.write('</body></html>');
 generator.document.close();
}
//-->


