function printPage() {
	if (window.print) {
		// The visitors browser can print this page - kick off the print dialog box
		window.print();
	} else {
		// visitors browser doesn't support printing - kick off an advisory alert
		window.alert("Sorry, but your browser or computer won't allow printing direct from the webpage. Use your Print button from the menubar on your browser to print this page");
	}
}