Mail = {
	recoverLink: function(obj) {
		link = obj.getAttribute("href");
//		link = obj.href;
		if ((pos = link.indexOf('##mt_##')) >= 0) {
			link = link.substr(pos + 7);
			link = link.replace(/%04%/, '%@');
			Teile = link.split("@");
			sep = "";
			neuerLink = "";
			for (i = 0; i < Teile.length; i++) {
				teil = "";
				for (j = 0; j < Teile[i].length; j++) {
					teil = Teile[i].substr(j, 1) + teil;
				}
				neuerLink += sep + teil;
				sep = "@";
			}
			obj.setAttribute("href", "mailto:" + decodeURI(neuerLink));
//			obj.href = "mailto:" + decodeURI(neuerLink);
		}
	}
}