function deactivate(formname){
  document.forms[formname].send.value    = "Bitte warten...";
  document.forms[formname].send.disabled = true;
  document.forms[formname].submit();
}

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;
}

function linkTo_UnCryptMailto(s)	{
 location.href="mailto:"+UnCryptMailto(s);
}

startList = function() {
if (document.all&&document.getElementById) {
navRoot = document.getElementById("l1_rpguidesmenu");
for (i=0; i<navRoot.childNodes.length; i++) {
node = navRoot.childNodes[i];
if (node.nodeName=="LI") {
node.onmouseover=function() {
this.className+=" over";
  }
  node.onmouseout=function() {
  this.className=this.className.replace(" over", "");
   }
   }
  }
 }
}
window.onload=startList;