function NoSpam(strShow, strPrefix, strSubject, strBody)
{
	document.write("<a href=" + "mail" + "to:");
	document.write(strPrefix);
	if (!(strSubject == "" && strBody == ""))
		document.write("?");
	if (strSubject != "")
	{
		document.write("subject=");
		document.write(strSubject);
		if (strBody != "")
			document.write("&");
	}
	if (strBody != "")
	{
		document.write("body=");
		document.write(strBody);
	}
	document.write(">");
	document.write(strShow);
	document.write("</a>");
}
