function printMe()
{
	// appropriated from another web site
	if (window.print) {
		setTimeout('window.print();', 333);
	}
	else if (agt.indexOf("mac") != -1) {
		alert("Press 'Cmd+p' on your keyboard to print page.");
	}
	else {
		alert("Press 'Ctrl+p' on your keyboard to print page.")
	}
}
