function hidemailto (who, where, text) {
	document.write ("<a href=\"mailto:"+who+"@"+where+"\">");
	if (text) { document.write (text)} else {
		document.write (who+"@"+where);
	}
	document.write ("</a>")
}
