<!-- ********************************************************************************************* -->
<!-- This javescript is called at the beginning of each page on which it's needed                 -->
<!-- ********************************************************************************************* -->

<!-- The following script sets up giving the user 1-click access to send email, -->
<!-- without allowing spambots to retrieve the email address                    -->
<!-- The function will be called in the body of each webpage that needs it.     -->

<!-- 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>');
}
//  End -->

<!-- ********************************************************************************************* -->

