function Clickheretoprint2()
{ 
var disp_setting="toolbar=yes,location=no,directories=yes,menubar=yes,"; 
 disp_setting+="scrollbars=yes,width=720 height=600, left=100, top=25"; 
var content_vlue = document.getElementById("print_content2").innerHTML; 

var docprint=window.open("","",disp_setting); 
docprint.document.open(); 
docprint.document.write('<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">');
docprint.document.write('<html xmlns="http://www.w3.org/1999/xhtml" lang="en">');
docprint.document.write('<head><title>NRFCU - Northwest Resource Federal Credit Union</title>'); 
docprint.document.write('<link rel="stylesheet" type="text/css" href="/css/print2007.css" />');
docprint.document.write('</head><body>'); 
docprint.document.write('<img src="/img/logo_nrfcu_rewarding.gif" alt="Northwest Resource Federal Credit Union - a rewarding experience" width="181" height="89" border="0">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;'); 
docprint.document.write('<img src="/img/title_Business_Rates_Fees4.gif" alt="Business Rates & Fees" width="454" height="59" border="0">'); 
docprint.document.write(content_vlue); 
docprint.document.write('<p class="close"><a href="javascript:print()">[ print ]</a>&nbsp;&nbsp;&nbsp;<a href="javascript:close()">[ close window ]</a></p>');
docprint.document.write('</body></html>'); 
docprint.document.close(); 
docprint.focus(); 
}
