/**
* Dynamically builds Mailto in order to avoid spam from use of email within webpages
*/

function buildMailto(n,d,t) {
    document.write('<a class="email" href=\"mailto:' + n + '@' + d + '\">');
    document.write(t + '</a>');
}