var coupons = new Array();

coupons['ColorVision Graphics, Inc.'] = "<div style='margin-top: 4px;'><img src='images/CVLogoSmall.jpg'></div><div style='line-height: 15px; margin-top: 8px;'><div style='font-size: 1.1em; margin-top: 0px;'><b>10% OFF Direct Mailing Service</b></div><div><b>With Any Printing Order</b></div><div style='margin-top: 5px; font-size: .8em;'>Offer Expires Dec 31 2008</div><div style='font-size: .75em; margin-top: 5px; margin-bottom: -10px;'>Go! Lawrenceville.com Online Coupon </div><div style='font-size: .75em; margin-top: 5px;'>Not valid with any other offer.</div></div>";


function popupCoupon(name)
{
	newwin = window.open("about:blank","coupon_window",config="width=600,height=600,menubar=1");
	newwin.document.writeln("<div style='width: 100%; height:600; text-align: center;'>");
	newwin.document.writeln("<div style='position: relative; top: 100px; width: 330px; height: 200px; font-size: 1.25em; line-height: 23px; border: dashed; text-align: center; margin: 0 auto;'>" + coupons[name] + "</div>");
	newwin.moveTo(400,0);
	newwin.document.writeln("<p style='text-align: center; position: relative; top: 200px;'><input type='button' value='Print' onclick='window.print();'>");
	newwin.document.writeln("&nbsp; &nbsp; <input type='button' value='Close' onclick='window.close();'>");
	newwin.document.writeln("<script type='text/javascript'>document.images[0].width='271'; document.images[0].height='83';</script>");
	newwin.document.writeln("</div>");
	newwin.document.close();
}