// JavaScript Document
    function ShowEmail(user, site, text)

    {

        var text = (text == null || text == '') ? user + '@' + site : text + ' &lt;' + user + '@' + site + '&gt;';
        document.write('<a href="mailto:' + user + '@' + site + '">' + text + '</a>');

    }
