Sick of having all these people spam you with messages you don't want to receive? Those horrible people most likely found out your e-mail address from your web page with their spider. Use this script in place of your current e-mail text to make your address undetectable to spiders. After using this script, you won't be added to the lists of new spammers that plague us daily.
The source..


<script language="Javascript">
<!--
// original content taken from Nic's JavaScript Page with permission
// lack of these three lines will result in copyright infringment
// made by: Nic's JavaScript Page - http://www.javascript-page.com

var user = "webmaster";
var domain = "javascript-page.com";
var mail = user + "@" + domain;

var message = "Click Here to E-mail Me";

document.write("<a href=\"mailto:"+mail+"\">"+message+"</a>");
//-->
</SCRIPT>

Color coding..


This is where you put in your e-mail address. You put everything in your address that is before the "@" in the user field and everything after the "@" in the domain field.
This is the text message that you want for the link. If you would like your e-mail address as the text message, put "mail" (without quotes) in the field and take out all quotes surrounding it.
Nic's JavaScript Page