function decryptMailto(element, s) {
	var i, n;
	var t = "";
	for (i = 0; i < s.length; i+=2) {
		n = parseInt(s.substr(i, 2), 16);
		n = n ^ 235;
		t += String.fromCharCode(n);
	}
	//alert(t);
	location.href = "mailto:" + t;
}

