function open_new_window() 
{
new_window = open("","OnlineCoupon",winOption);

// open new document 
  new_window.document.open();
  
// Text of the new document
// Replace your " with ' or \" or your document.write statements will fail
new_window.document.write("<html><title>Print This Coupon</title>");
new_window.document.write("<body bgcolor=\"#FFFFFF\" topmargin=0 leftmargin=0 marginheight=0 marginwidth=0 onLoad=\"window.print()\">");
new_window.document.write("<img src=" + coupon + "><br>");
new_window.document.write("<font size=1 face=arial,sans>Another <b>Viewer's Choice</b> Coupon from WVAH Fox 11 and WCHS-TV8</font><br>");
new_window.document.write("</body></html>");

// close the document
  new_window.document.close();  
}

function open_new_window2() 
{
new_window2 = open("","OnlineCoupon",winOption2);

// open new document 
  new_window2.document.open();
  
// Text of the new document
// Replace your " with ' or \" or your document.write statements will fail
new_window2.document.write("<html><title>Print This Coupon</title>");
new_window2.document.write("<body bgcolor=\"#FFFFFF\" topmargin=0 leftmargin=0 marginheight=0 marginwidth=0 onLoad=\"window.print()\">");
new_window2.document.write("<img src=" + coupon2 + "><br>");
new_window2.document.write("<font size=1 face=arial,sans>Another <b>Viewer's Choice</b> Coupon from WVAH Fox 11 and WCHS-TV8</font><br>");
new_window2.document.write("</body></html>");

// close the document
  new_window2.document.close();  
}

