function Clickheretoprint(title)
{ 
  var disp_setting="toolbar=no,location=no,directories=no,menubar=no,"; 
      disp_setting+="scrollbars=yes,width=640, height=480, left=10, top=10"; 
  

var content_vlue = document.getElementById("print_content").innerHTML; 
  


var dt = new Date();
var y  = dt.getYear();

  var docprint=window.open("","",disp_setting); 
   docprint.document.open(); 
   docprint.document.write('<html><head><style>a:link { color: #000000; text-decoration: none; }a:hover { color: #000000; text-decoration: none; }a:visited { color: #000000; text-decoration: none; }a:active { color: #000000; text-decoration: none; }a {cursor: default;}</style>'); 
   docprint.document.write('<script type="text/javascript">function doit(){var a = document.getElementById("printme").document.getElementsByTagName("a");for(var i=a.length-1;i>=0;i--){if(a[i].href){while(a[i].hasChildNodes()){a[i].parentNode.insertBefore(a[i].childNodes[0],a[i]);}a[i].parentNode.removeChild(a[i]);}}var numberForms = document.forms.length;var formIndex;for (formIndex=0; formIndex<numberForms; formIndex++){for(x=0;x<document.forms[formIndex].length;x++){ document.forms[formIndex].elements[x].disabled=true }}}</script></head><body onLoad="self.print();doit();"><center>');  
   docprint.document.write('<table border="0" width="100%" id="table1" height="106"><tr><td width="300" height="71"><img border="0" src="/johnson/includes/images/johnson_logo.gif" width="229" height="42"></td><td height="71"><p align="right"><INPUT TYPE="image" SRC="/johnson/images/button_print.gif" VALUE="Print" onclick="self.print();" ALT="Print" NAME="Print">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;</td></tr><tr><td colspan="2" style="border-left-width: 1px; border-right-width: 1px; border-top-style: double; border-top-width: 3px; border-bottom-width: 1px" bordercolor="#000000" valign="bottom"><font face="Arial"><b><font size="2">Printer friendly page for ' + title + '</font></b></font></td></tr></table>');        
   docprint.document.write('<div name="printme" id="printme">'+ content_vlue);
   docprint.document.write('<br><table border="0" width="100%" id="table2"><tr><td align="center" style="border-left-color: #000000; border-right-color: #000000; border-top: 3px double #000000; border-bottom-color: #000000">&nbsp;</td></tr><tr><td align="center"><p align="center"><font size="1" face="verdana">Johnson Insurance Associates, Inc.<br>176 McSwain Drive | Columbia, South Carolina 29221<br>Copyright (C) '+y+' Johnson Insurance Associates, Inc. All Rights Reserved.<br>Users agree to terms of Disclosures and Legal Information.</p></td></tr></table>');
   docprint.document.write('</center></div></body></html>');
 
   docprint.document.close(); 
   docprint.focus(); 
}

