<!--

function sendem(name)
{
url = "mum.edu"
email = name + "@" + url;

document.write(" <A HREF=\"mailto:");
document.write(email);
document.write("\">" + email + "<\/a>");
}

function sendem2(name,host) 
{

email = name + "@" + host;

document.write(" <A HREF=\"mailto");
document.write(":" + name + "@");
document.write(host + "\">" + email + "<\/a>");
}

//--> 
