<!-- This script prevents SPAM spider-bots from automatically -->
<!-- scanning the HTML code and indexing email addresses for  -->
<!-- SPAM purposes. Works in MSIE, Netscape and Opera.        --> 
<!-- This script and many more are available free online at   -->
<!-- The JavaScript Source!! http://javascript.internet.com   -->
<!-- Original:  William Rozell Jr (elranzer@nospam.com )      -->
<!-- Modified:  Tung Phan (tdphan@ita.lacity.org)             -->
<!-- Web Site:  http://www.elranzer.com                       -->
<!-- Begin
var user;
var domain;
var suffix;
var txtDisplay;

function jemail(user, domain, suffix, txtDisplay){
    if (txtDisplay.length > 0) {
        document.write('<a href="' + 'mailto:' + user + '@' + domain + '.' + suffix + '">' + txtDisplay + '</a>');
    }else {
        document.write('<a href="' + 'mailto:' + user + '@' + domain + '.' + suffix + '">' + user + '@' + domain + '.' + suffix + '</a>'); 
    }    
}
//-->
//  End -->
