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

