function PrintThisPage() { 
	if (document.getElementById != null) {
		var sOption = "toolbar=1,scrollbars=1,location=0,statusbar=0,menubar=1,resizable=1,"; 
			sOption += "top=20,left=20,width=750,height=480"; 
		var sWinHTML = document.getElementById('contentbegin').innerHTML; 
		var winprint = window.open("","",sOption); 
			winprint.document.open(); 
			winprint.document.write('<html><LINK href="/utility/style_print.css" rel="Stylesheet"><body>'); 
			winprint.document.write('<h1>St. Mark the Evangelist Catholic Church</h1>');          
			winprint.document.write(sWinHTML);          
			winprint.document.write('</body></html>'); 
			winprint.document.close(); 
			winprint.focus(); 
	}
	else {
		alert("Sorry, the printer friendly feature is not available in your browser.");
	}
}