// JavaScript Document
<!--
function Clickheretoprint()
{ 
  var disp_setting="toolbar=yes,location=no,directories=yes,menubar=yes,"; 
      disp_setting+="scrollbars=yes,resizable=yes,width=420, height=350"; 
  var content_vlue = document.getElementById("print_content").innerHTML; 
  
  var docprint=window.open("","",disp_setting); 
   docprint.document.open(); 
   docprint.document.write('<html><link href="/assets/css/main.css" rel="stylesheet" type="text/css"><head><title>// Printer Friendly //</title>'); 
   docprint.document.write('<style type="text/css">body, p, div {line-height:19px; background-image:none;} body, html {background-image:none;}</style>');  
   docprint.document.write('<script type="text/javascript">window.opener.document.location.href=window.opener.document.location.href;</script>');  
   docprint.document.write('</head><body bgcolor="#ffffff" marginwidth="10" topmargin="10" onLoad="self.print()">');
   docprint.document.write(content_vlue);          
   docprint.document.write('</body></html>'); 
   docprint.document.close(); 
   docprint.focus(); 
}
