// JavaScript Document
//makes <a href=mailto:username@fcds.org>user name</a>
function makeMail(name) {
preFix = name.replace(" ","");
theString = "<a href='mailto:"
theString += preFix;
theString += "@fcds.org'>";
theString += name;
theString += "</a>";
return theString;
}