// JavaScript Document
function PrintThisPage() 
{ 
	
   var sOption="toolbar=yes,location=no,directories=yes,menubar=yes,"; 
       sOption+="scrollbars=yes,width=960,height=600,left=100,top=25"; 
   var sWinHTML = document.getElementById('maincontents').innerHTML; 
   
   var winprint=window.open("","",sOption); 
       winprint.document.open(); 
       winprint.document.write('<html xmlns="http://www.w3.org/1999/xhtml"><link href=inc/fonts.css rel=Stylesheet /> <link href=inc/forms.css rel=Stylesheet /> <link href=inc/layout.css rel=Stylesheet /> <link href=inc/global.css rel=Stylesheet /> <link href=inc/hyperlinks.css rel=Stylesheet /> <body onLoad="window.print()">'); 
       winprint.document.write(sWinHTML);          
       winprint.document.write('</body></html>'); 
       winprint.document.close(); 
       winprint.focus(); 
}

