function email(name) {
var my = name + "&#64;mcg&#46;edu";    // This dynamically creates what is shown on the page
var p = name;         // This is the name of the person
var d = "edu";
var s = "mcg";
var m = "ma" + "il" + "to" + "&#58;";
var me = p + "&#64;" + s + "&#46;" + d;
var e = m + me;
document.write(my.link(e));
}