function PrintThisPage() 
{ 
   var sOption="toolbar=yes,location=no,directories=yes,menubar=yes,"; 
	   sOption+="scrollbars=yes,width=750,height=600,left=100,top=25"; 

   var sWinHTML = document.getElementById('contentstart').innerHTML; 
   
   var winprint=window.open("","",sOption); 
	   winprint.document.open(); 
	   winprint.document.write('<html><LINK href=CSS/printstyle.css rel=Stylesheet><body style="background-color: #FFF;">'); 
	   winprint.document.write('<table width="93%" border="0" cellspacing="4" cellpadding="4" align="left"><tr><td></td></tr><tr><td>');
	   winprint.document.write(sWinHTML);          
	   winprint.document.write('</td></tr></body></html>'); 
	   winprint.document.close(); 
	   winprint.focus(); 
}