<!--
// eMail Obfuscator Script 2.1 by Tim Williams - freeware
{
 	coded = "2CJE@PRQGNDEN.EN4"
	cipher = "aZbYcXdWeVfUgThSiRjQkPlOmNnMoLpKqJrIsHtGuFvEwDxCyBzA1234567890"
	shift=coded.length
	link=""
	for (i=0; i<coded.length; i++)
	{
		if (cipher.indexOf(coded.charAt(i))==-1)
		{
			ltr=coded.charAt(i)
			link+=(ltr)
		}
		else
		{     
			ltr = (cipher.indexOf(coded.charAt(i))-shift+cipher.length) % cipher.length;
			link+=(cipher.charAt(ltr));
		}
	}
	link+="?subject=SPIN Web Question/Comment/Suggestion&body=Leave the subject as is to pass SPAM filter - This line you can blast away.";
	document.write("<p>Questions, comments, suggestions: <a href='mailto:"+link+"'>SPIN Mail</a></p>")
}
//-->
