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="window.print();doit();"><center>');  
   docprint.document.write('<table border="0" width="100%" id="table1" height="106"><tr><td width="213" height="71"><img border="0" src="/webff/includes/images/logoff3.gif" width="200" height="62"></td><td height="71"><p align="right"><INPUT TYPE="image" SRC="/webff/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">First Federal | Member FDIC. Equal Housing Lender.<br>2440 Mall Drive, Suite 100 | Charleston SC 29406<br>Phone 843-529-5800 | Toll Free 1-800-768-3248<br><br>Copyright (C) '+y+' First Federal. 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();

}


