// JavaScript Document

// status message
function ShowMsg(msg) {
	window.status = "// "+msg+" //";
	return true;
} // function ShowMsg(msg)

// TYPO3 Mailto-UnCrypt
function UnCryptMailto(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-(3));
	}
	return r;
}
function uncrypt(s)	{
	location.href=UnCryptMailto(s);
}// TYPO3 Mailto-Uncrypt