// Hide Email Addresses from Harvesters
function hideaddy(em1, em2, atxt) {
    if (em1 && em2) {
        if (!atxt) { var atxt = "E-Mail"; }
        document.write('<a href=\"mailto:' + em1 + '@' + em2 + '\" class="embeddedLinks">' + atxt + '</a>');
    } else {
        document.write(' -- No email address supplied -- ');
    }
}