<!-- Begin

function Clickheretoprint()
{ 
  var disp_setting="toolbar=yes,location=no,directories=yes,menubar=yes,"; 
      disp_setting+="scrollbars=yes,width=650, height=600, left=100, top=25"; 
  var content_vlue = document.getElementById("print_content").innerHTML; 
  
  var docprint=window.open("","",disp_setting); 
   docprint.document.open(); 
   docprint.document.write('<html><head><link rel="stylesheet" href="http://www.wooffrealtors.com/listings/inc/print.css">'); 
   docprint.document.write('</head><body onLoad="self.print()">');
   docprint.document.write('<P ALIGN="Center"><span class="hdr">Mortgage Amortization Table</span><BR>');
   docprint.document.write('<span class="hdr2">Wooff Realtors</span><BR>');
   docprint.document.write('<span class="hdr3">www.wooffrealtors.com<BR>618-462-9798&nbsp;&nbsp;618-692-1045&nbsp;&nbsp;618-377-8212&nbsp;&nbsp;618-624-6187<br>dwooff@wooffrealtors.com</span></P>');  
   docprint.document.write(content_vlue);
	docprint.document.write('<P ALIGN="Center" class="footnote">These calculations do not constitute a loan application, loan offer or loan approval.<BR><BR>The results displayed are only as valid as the information you provided.</P>');     
   docprint.document.write('</body></html>'); 
   docprint.document.close(); 
   docprint.focus(); 
}

// End -->

