<!-- 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 )      -->
<!-- Web Site:  http://www.elranzer.com                       -->
<!-- Begin
var user;
var domain;
var suffix;

function jemail(user, domain, suffix){
document.write('<a href="' + 'mailto:' + user + '@' + domain + '.' + suffix + '">' + user + '@' + domain + '.' + suffix + '</a>');
}

function jnemail(user, domain, suffix, name){
document.write('<a href="' + 'mailto:' + user + '@' + domain + '.' + suffix + '">' + name + '</a>');
}

//-->
//  End -->
