function encryptMT(s) {
	var n=0;
	var r="";
	for(var i=0;i<s.length;i++) {
	n=s.charCodeAt(i);
	if (n>=8364) {n = 128;}
		r += String.fromCharCode(n+(2));
	}
	alert(r); //irgendwie anzeigen	
}
		
function decryptMT(s) {
	var n=0;
	var r="";
	var b="";
	for(var i=0; i < s.length; i++) {
		n=s.charCodeAt(i);
		if (n>=8364) {n = 128;}
		b += String.fromCharCode(n-(2));
	}
	location.href=b;
}

function mailWM() {
	var url = 'mai' + 'lto:webmaster' + '@' + 'zonezero.de';
	url += '?subject=' + encodeURIComponent('Fehlerhafter Link auf zonezero.de') + '&body=';
	url += encodeURIComponent('Es gibt ein Problem mit einem Link auf <?= $_SERVER["HTTP_REFERER"]; ?> zu <?= $_SERVER["REQUEST_URI"]; ?>. Bitte schauen Sie sich das mal an.');
	location.href = url;
}
