// ================================================================================================
// Used for hiding email addresses. The script put the pieces together and writes them to the browser.
// Call the script and display the email link using <script>mail("name","domain","display")</script>.
// ================================================================================================
<!--
function mail(name, domain, display) {
displayed=(typeof(display)=="undefined") ? name+"@"+domain : display
document.write('<a href=mailto:' + name + '@' + domain + '?subject=This%20msg.%20is%20from%20the%20Facilities%20Management%20website.' + '>' + displayed + '</a>');
}
// -->