function printCoupon() {
    msgWindow=window.open('','msgWindow','toolbar=yes,location=no,directories=no,status=no,menubar=yes,scrollbars=yes,resizable=yes,copyhistory=no,width=600,height=500');
    msgWindow.document.open();
    msgWindow.document.write("<html><head><title>Greenmount Bowl - Free Coupon</title></head><body onblur='window.close()'>");
    msgWindow.document.write("<p><img src='images/Free Games Coupon.png' alt='Free Games Coupon' /></p>");
    msgWindow.document.write("</body></html>");
    msgWindow.print();
	return true;
}

