
//anzeige der menues oder eben nicht
function menu_showSub(mitem){
	
	var menu = document.getElementById(mitem);
	menu.className+=" iehover";
	
}


function menu_hideSub(mitem){
	
	var menu = document.getElementById(mitem);
	menu.className=menu.className.replace(" iehover","");	
	
}


function start_sendMail(){
	
	/*okvg = "poststelle";
	okvg += "@";
	okvg += "wwd" + "." + "de";
		
	MailWindow = window.open("mailto:"+okvg);
	if(MailWindow != null) {
		MailWindow.close();
	}	*/
	linkTo_UnCryptMailto('nbjmup;qptutufmmfAxxe/ef');
}



// JS function for uncrypting spam-protected emails:
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-(1));
	}
	return r;
}
  // JS function for uncrypting spam-protected emails:
function linkTo_UnCryptMailto(s)	{	//
	location.href=UnCryptMailto(s);
}
