// JavaScript Document
function printPage(){
	if(navigator.userAgent.indexOf("Mac") != -1 && navigator.userAgent.indexOf("MSIE") != -1){
		alert('Sorry, your browser cannot print using this link. Please click on "Print..." under the File menu in Internet Explorer');
	}else{
		window.print();
	}
}