function noSpam(prefix, suffix, text)
{
	var mailto = "<a href=\"mailto:" + prefix + "@" + suffix + "\">";
	if (text == null) {
		document.write(mailto, prefix, "@", suffix, "</a>");
	} else {
		document.write(mailto, text, "</a>");
	}
}
