function printOffer(node){

  var content = node.innerHTML;
  var pwin = window.open('','print_content','width=300,height=300');

  pwin.document.open();
  pwin.document.write('<html><head><STYLE>.offerBox{	 padding-left:10px;	border:1px dotted #666666;} .offerHeading{	font:normal 17px Arial,sans-serif;color:#5d3722;}.offerTitle{	margin-top:7px; font:normal 14px Arial,sans-serif;color:#5d3722;}.offerExpire{	font-style:italic;  font:normal 11px Arial,sans-serif; color#000 !important;}.offerDetails{	 font:normal 11px Arial,sans-serif;color:#000;line-height:1.4;;}.offerCode{	font-style:italic;  font:normal 11px Arial,sans-serif; color#000 !important;}</STYLE></head><body onload="window.print();">'+content+'</body></html>');
  pwin.document.close();
 


}

function printPage(){
	window.print();
}

