My efforts to reduce spam.

Spammers. They’re a scourge. Particularly loathsome is the way they use automatic programs (called robots or spiders) to crawl around the Web, “harvesting” email addresses from web pages.

That’s why this site presents email address links in a special way to defeat the nefarious robots. But this technique relies on JavaScript—which isn’t enabled in your browser.

Which is why you’ve landed on this page.
This means you’ll have to enter the email address manually into your email program.

When you do so, simply replace the “(at)” in the address with an “@”.
(Example: recipient(at)example.com becomes recipient@example.com.)

Sorry for the extra work, but thanks for helping us thwart the spammers!


p.s. If you want to do the same on your site, here is the technique:

Instead of using the straight email in the link, as so:
Send mail to <a href="mailto:recipient@example.com">recipient@example.com</a>.
...which looks like this in the browser: [Send mail to recipient@example.com.]

use this version of the link:
Send mail to <a href="antispam_email.html" onmouseover="this.href='mai' + 'lto:' + 'recipient' + '@' + 'example.com'">recipient(at)example.com</a>.
...which looks like this in the browser: [Send mail to recipient(at)example.com.]

That’s all there is to it! If the users’s browser doesn’t support JavaScript, the link takes them to a web page you’ll create named “antispam_email.html” (which is the page you are now viewing). Good luck!