<!--

// Detect browser and platform 
// If IE on Mac, alert user to use Command-P to print page //

function printPage(){
	if (navigator.userAgent.indexOf('Mac') != -1 && navigator.appName == "Microsoft Internet Explorer") {
	alert('To print this page, click OK, then press Command-P.')
	} else {
	window.print();
	}
}

// -->