function getonme() {
el = event.srcElement ;
if (el.getAttribute("litUp1") != null) {
el.className = "onme1" ;
}
}

function getoffme() {
el = event.srcElement ;
if (el.getAttribute("litUp1") != null) {
el.className = "offme";
}
}

document.onmouseover = getonme ;
document.onmouseout = getoffme ;


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>Big Book of Values</b> Coupon from WCHS-TV8 and WVAH Fox 11</font><br>");
new_window.document.write("</body></html>");

// close the document
  new_window.document.close();  
}

