function encrypter(address) {
// eMail Obfuscator Script 2.1 by Tim Williams - freeware
	var address = address.toLowerCase() + "@walamootkin.org";
	coded = ""
	cipher = "aZbYcXdWeVfUgThSiRjQkPlOmNnMoLpKqJrIsHtGuFvEwDxCyBzA1234567890"
	shift = address.length
	for (j = 0; j < address.length; j++) {
		if (cipher.indexOf(address.charAt(j)) == -1 ) {
			chr = address.charAt(j)
			coded += address.charAt(j)
		} else {
			chr = (cipher.indexOf(address.charAt(j)) + shift) % cipher.length
			coded += cipher.charAt(chr)
		}
	}
	
	return coded;
}

function decrypter(coded)
// eMail Obfuscator Script 2.1 by Tim Williams - freeware
{
	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))
		}				
   }
	
	return link;
}

function ob(code) {
	return decrypter(encrypter(code));
}