// This produces a mailto link.  The purpose of using javascript is to reduce spam.


function emailLink(strDomain, strUserStart, strIgnore, strUserEnd) {
   var strAt = "@";
   var strEnd = ".com";
   document.write('<a href="mailto:' + strUserStart + strUserEnd + strAt + strDomain + strEnd + '">');
}

function endEmailLink() {
   document.write('</a>');
}
