 function OEA() {
 //*	------------------------------------------------------------
 //*	 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/
 //*	 Modified by Woody Smith.   1)Removed open text in anchor
 //*	                            2) added graphic to NoScript 
 //*	                            3) added alt to email graphic for blind readers
 //*	howto:  put into body
 //*          <SCRIPT language="JavaScript" SRC="Email_obfiscation.js"></SCRIPT>
 //*	------------------------------------------------------------
 //*
        { coded = "cL1p@xOoy3saWa2wkppaysLPyksy.Lw3"
        key = "QLZw6FrjzcfAdKCJ8W3VXIqgTaGy2pDnme9ShYOiRx1EPBNbt7Hv4U5l0suoMk"
        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))
			}
		}
		document.write("<a href='mailto:"+link+"'><span class='tag'>Email:&nbsp;&nbsp;<\/span><span class='info'>"+link+"<\/span><\/a><br>")
		}
}
// You need to goto the website and generate code for each address.  The code is different each time it is generated.

