var strOldPreId = null;
function showd(strPreId){
  if(strPreId != strOldPreId){
    if(strOldPreId != null){
      // Offene Togglebox schliessen
      document.getElementById(strOldPreId).style.display = "none";
      document.getElementById(strOldPreId).style.display = "";
    }
    document.getElementById(strPreId).style.display = "block";
    //document.getElementById(strPreId+"_link").style.display = "none";
    strOldPreId = strPreId;
  }else{
    document.getElementById(strPreId).style.display = "none";
    //document.getElementById(strPreId+"_link").style.display = "";
    strOldPreId = null;
  }
}