var EmailPart1 = "Trevor"; //Put the email name here without the @
var EmailPart2 = "TheHarwoodFamily.com"; //Put the Domain Name Here without the @
var theLink = EmailPart1 + '@' + EmailPart2;  // Put the text for the link here
document.write('<a href=mailto:' + EmailPart1 + '@' + EmailPart2 + '>'+theLink+'</a>');

