function nospam(thing1, thing2)
{
	document.write("<a href='mailto:");
	document.write(thing1);
	document.write("\100");
	document.write(thing2);
	document.write("'>");
	document.write(thing1);
	document.write("\100");
	document.write(thing2);
	document.write("</a>");
}

function nospamwithname(thing1, thing2, thing3)
{
	document.write("<a href='mailto:");
	document.write(thing1);
	document.write("\100");
	document.write(thing2);
	document.write("'>");
	document.write(thing3);
	document.write("</a>");
}