function munge(one, two, three)
{
	var link = one + "@" + two + ".com";
 	var four = "mailto";
	if(!three) { three = link; }
	document.write("<a href='" + four + ":" + link + "'>" + three + "</a>");
}

