function PrintThisPage() 
{ 
	if(!document.getElementById){
		alert("This function requires Internet Explorer 4 or higher or Netscape 6 or higher");
	}
   var sOption="toolbar=yes,location=no,directories=yes,menubar=yes,"; 
       sOption+="scrollbars=yes,width=600,height=400,left=50,top=50"; 

   var sWinHTML = document.getElementById('ContentStart').innerHTML; 
   
   var winprint=window.open("","",sOption); 
       winprint.document.open(); 
		
       winprint.document.write('<html><LINK href=\"../cptx_print.css\" rel=Stylesheet><body>'); 
       winprint.document.write('<table width="100%" border="0" cellspacing="0" cellpadding="0"><tr><td><p><a href=\"javascript:window.print()\">Print</a></p></td><td align="right"><img src="../images/logo_print.gif" width="60" height="60"></td></tr></table><p>&nbsp</p>');
	winprint.document.write(sWinHTML);  
	   winprint.document.write('<p>&nbsp</p>'); 
       winprint.document.write('</div></body></html>'); 
       winprint.document.close(); 
       winprint.focus(); 
}