var hidemenues = false;
var toHide = "";
function show(menu1) {
	i = 0;
	while (document.getElementById("sub" + i)) {
		document.getElementById("sub" + i).style.display = "none";
		i++;
	}
	document.getElementById(menu1).style.display = "block";
}
function hidenow() {
	if (hidemenues) {
		document.getElementById(toHide).style.display = "none";
	}
}
function hide(menu1) {
	toHide = menu1;
	hidemenues = true;
	window.setTimeout("hidenow()",1500);
}
function T3_onloadWrapper(){
return false;
};

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-(2));
	}
	return r.replace("*",":");
}


    function linkTo_UnCryptMailto( s )
    {
        location.href= UnCryptMailto( s );
    }

