// include the line 
// <script src='/nospam.js'></script>
// in your header.  then, where you want your address to appear, use 
// <script>PrintAddress("mylogin");</script>
// you can also add in
// <noscript>(Turn on JavaScript for my e-mail!)</noscript>
// to tell people with javascript disabled what's up.

function PrintAddress(name, domain)
{
	a = name + String.fromCharCode(64);
	if (domain) a += domain;
	else a += "doomchicken.net";
	document.write("<a href='"+"mai"+"lto:"+a+"'>"+a+"</a>");
}
