function MailtoDecode(code, bezeichnung, attribut) {
	var code, charakter;
	var strCode = new String(code);
	var arrCode = strCode.split('|');
	var i = arrCode.length;
	var Decaddr = "";
	for (var x=0; x < i; x++) {
		code = arrCode[x];
		charakter = String.fromCharCode( code - i );
		Decaddr += charakter;
	}
	attribut = attribut ? ' ' + attribut : '';
	if (!bezeichnung) bezeichnung = Decaddr; 
	var strOutput = '<a href="mailto:'+Decaddr+'"' + attribut+'>' + bezeichnung + '</a>';
	document.write(strOutput);
}