function maillink(){
	// 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 = "qNwt@Kt0wtlGJqHVl8N.Gty"
	key = "rkIAZRM3iocXxfKBeVzyUh1lnDWb2PgqtG46w5T8Fs0EJLHNOpCSQjv7dam9Yu"
	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+"?SUBJECT=Contact via website Joy for Children'>"+link+"</a>")
}

function mailimagelink(){
	// 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 = "qNwt@Kt0wtlGJqHVl8N.Gty"
	key = "rkIAZRM3iocXxfKBeVzyUh1lnDWb2PgqtG46w5T8Fs0EJLHNOpCSQjv7dam9Yu"
	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+"?SUBJECT=Contact via website Joy for Children'>"+'<img src="images/txt-email.gif" alt=""/>'+"</a>")
}
