================COPY CODE BELOW=========================== <script language="JavaScript">
<!--
var mail_domain = "domain"
var mail_suffix = ".com"
var mail_first = "name"
var mail_last = "" <!-- Optional, can do first name + last name
or leave last blank -->
var mail_subject = "Subject Goes Here" <!-- Set to "" for
no subject -->
var mail_recipient = mail_first + mail_last + "@" + mail_domain + mail_suffix
document.write("<a href='mailto:" + mail_recipient + "?subject=" +
mail_subject + "'>" + mail_recipient + "</a>");
//-->
</script>
================COPY CODE ABOVE===========================
INSTRUCTIONS
Paste code inside body <BODY></BODY> of HTML page
You can remove any parts of the mailto link you want by modifying the "to_url" line
DESCRIPTION
If you put a regular mailto link on a site, any e-mail addresses referenced
will get picked up by spiders, specifically looking for e-mail addresses
on websites. The e-mail addresses get collected and sold. To avoid having
your e-mail getting added to the list, you can break up the information,
so that the spider cannot recognize the information as an address in the
code.