//
// moinmoin.js
//
// Original idea from http://innerpeace.org/escrambler.shtml
//
// Scramble your email address from SPAM Email Crawlers.
//

//
// Add the following to the <head> section of a HTML page:
//
//	<script language="JavaScript1.1" src="moinmoin.js"></script>
//
// For every place you use the URL "mailto:user@my.domain.tld",
// replace the URL with:
//
//	javascript:mailto()
//
// To support multiple email addresses, just copy/paste the function
// below once for each address, rename the function, and specify the
// account name and host name variables.
//
// The scrambling comes two fold: first, the JavaScript is in a
// separate file which probably won't be fetched; second, the email
// is address broken up into pieces.
//
// Works in IE 4, 5, 6 and Netscape 4.7, 6.
//

function mailto(here)
{
	here = here.replace(/\s+fua\s+/, '@');
	here = here.replace(/\s+tknup\s+/g, '.');
	location.href = "mailto:" + here;
}

function kuner()
{
	mailto('christopher fua kuner tknup com');
}

function hunton()
{
	mailto('ckuner.br fua hunton tknup com');
}
