// JavaScript Document
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("main").innerHTML; 
		
		var docprint=window.open("","",disp_setting); 
			docprint.document.open(); 
			docprint.document.write('<html><head><title>LCDC - Printer Friendly</title>'); 
			docprint.document.write('<link href="/themes/lkcs/css/print.css" rel="stylesheet" type="text/css" />'); 
			docprint.document.write('</head><body onLoad="self.print()">');          
			docprint.document.write('<center><table width="90%"><tr><td width="131"><p align="center"><div style="font-weight: bold;"><img src="/themes/lkcs/images/LCDC.png" width="172" height="163" alt="LCDC" /></div></td>  <td width="313"><div style="font-weight: bold; font-size: 12px;">Logistics Corridor Development Connection</div><div style="font-size: 11px;">815 N. Orlando Smith Road - Oglesby, IL 61348<br /><b>PH</b>: 815/ 224-0428 - <b>FAX</b>: 815/ 224-0276</div></p></td></tr></table><table cellpadding="0" width="88%"><tr><td><div style="font-size: 11px;">');
			docprint.document.write(content_vlue);
			docprint.document.write('</div></td></tr></table>');
			
			docprint.document.write('</center></body></html>'); 
			docprint.document.close(); 
			docprint.focus(); 
}
