function printPage() {
	var prn = new Image();

	if (window.print) {
		setTimeout('window.print();',200);
	}
	else if (agt.indexOf("mac") != -1) {
		alert("Press 'Cmd+p' on your keyboard to print article.");
	}
	else {
		alert("Press 'Ctrl+p' on your keyboard to print article.")
	}
}


function noSpam(domain,tld,user) {
	locationstring = "mailto:" + user +
	"@" + domain + "." + tld;
	window.location = locationstring;
}