<!--
// Email obfuscator script 2.1 by Tim Williams, University of Arizona
// Random encryption key feature by Andrew Moulden, Site Engineering Ltd
// This code is freeware provided these four comment lines remain intact
// A wizard to generate this code is at http://www.jottings.com/obfuscator/
{ 
	coded = "dhNx@dhNxNbJwS.SCj"
	key = "dZtTy4w7nRPaSMlKLmbq2U6vWfx9rJgDpc8XIz3GAi05sYCEjuheVFB1oHkNOQ"
	shift=coded.length
	link=""
	for(i=0; i<coded.length; i++)
	{
		if(key.indexOf(coded.charAt(i))==-1)
		{
			ltr = coded.charAt(i)
			link += (ltr)
		} else
		{
			ltr = (key.indexOf(coded.charAt(i))-shift+key.length) % key.length
			link += (key.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>")
}
//-->
