function printCoupon(divId){
	var objDiv;
	objDiv = document.getElementById(divId);
couponWindow = window.open('Blank.htm','coupon','title= '+objDiv.getElementsByTagName('span')[0].innerHTML,'');
// couponWindow.document.title =  objDiv.getElementsByTagName('span')[0].innerHTML;

couponWindow.document.write("<html xmlns=\"http://www.w3.org/1999/xhtml\">\r\n");
couponWindow.document.write("<head>\r\n	<title>"+ objDiv.getElementsByTagName("span")[0].innerHTML+"</title>\r\n");
couponWindow.document.write("<style type=\"text/css\">\r\n");
couponWindow.document.write("body{background-color:#FFFFFF !important;}\r\n");
couponWindow.document.write(".hideOnPrint{display:none;}\r\n");
 couponWindow.document.write("p {	font-family: Verdana, Arial;	font-size: 12px;	color: #000000;}\r\n");
couponWindow.document.write(" p {	margin: 15px;}\r\n");
  couponWindow.document.write("p.coupon {	width: 5in;	height: 2.5in;	border: 1px dashed #000000;	margin: 8px;	padding: 8px; text-align:center; font-size:13px;}\r\n");

couponWindow.document.write("   span.couponHeader {	font-family: Comic Sans MS; font-size: 32px;	font-weight: bold;}\r\n");
couponWindow.document.write("</style>\r\n");
couponWindow.document.write("<link rel=\"stylesheet\" type=\"text/css\" href=\"farm.css\" />");

couponWindow.document.write("</head>\r\n");
couponWindow.document.write("<body>\r\n");
	couponWindow.document.write("<p class=\"coupon\" id=\"couponP\">\r\n");
	couponWindow.document.write(objDiv.innerHTML);
	couponWindow.document.write("</p>\r\n");
couponWindow.document.write("</body>\r\n</h"+"tml>\r\n");


couponWindow.document.write("<scr"+"ipt type=\"text/javasc"+"ript\">");

couponWindow.document.write("setTimeout(\"print()\",1500);</sc"+"ript>");
couponWindow.document.close();
}
