// JavaScript Document
// Modified version of eMail Obfuscator Script 2.1 by Tim Williams - freeware
function ShowEmail(which)
{
    	var emails = ["9i0Z0nSOEaDn@nSOEaDnVgon0.vSG",
		"qh5RlOhqCA5-5ZJ@xbpRA5xEhqxZ.abO",
		"z3LGagllzw@elhoT0epYzew.slg",
		"mweeaglloa@elhoT0epYzew.slg",
		"ptCwZVGNp@XtGVvLXCZpXN.et5",
		"cxELWQx9h29@s2i6x9sz5VsL.n2c",
		"ZymECmYKGYxWxR@TWCfmYT6GETD.xWi",
		"VK59z5ii5V6@s2i6x9sz5VsL.n2c",
		"diOKFp@jK5Ce7ji0OjQ.FKD",
		"c7DOKZvJyqKZv@vJyqKZvoc6v9.TJh"];
		coded=emails[which];
		cipher = "esnvTxaKmAtl2SJWbrBdkI3QP7NwL09DZY5gcGhiOyCpzVo6EqfRMH41UujF8X"
		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))
			}				
    }
			document.write("<a href='mailto:"+link+"'>"+link+"</a>")
}
