// Let's hide our email address --
//
//  Modified from Joe Moretti's script at Sci-Quest


function s3mail(Account,Domain) {
    var first = '&#109;&#97;';
    var third = '&#116;&#111;&#58;';
	 var Link = '<img src="/img/icons/email_envelope.png" width="16" height="16" border="0">';
    document.write('<a href="');
    document.write(first);
    document.write('il');
    document.write(third);
    document.write(Account);
    document.write('&#64;');
    document.write(Domain);
    document.write('" title="');
//    document.write(Title);
    document.write(Account);
    document.write('&#64;');
    document.write(Domain);
	 document.write('">');
    document.write(Link);
    document.write('</a>');
    }


