//Browsersniffing
    ie=(document.all)? 1:0;
    nn=(document.layers)? 1:0;
    gecko=(document.getElementById)? 1:0;

    if(ie) {
      teil1="document.all.";
      teil2=".style.";
      teil3="pixelTop=";
      teil4="pixelLeft=";
      teil5="document.body.scrollTop+400";
      teil6="document.body.offsetWidth";
      teil7="document.body.scrollTop";
      teil8="pixelTop";
    }

    if(nn) {
      teil1="document.";
      teil2=".";
      teil3="top=";
      teil4="left=";
      teil5="window.pageYOffset+400";
      teil6="window.innerWidth";
      teil7="window.pageYOffset";
      teil8="top";
    }

    if(gecko && !ie) {
      teil1="document.getElementById('";
      teil2="').style.";
      teil3="top=";
      teil4="left=";
      teil5="window.pageYOffset+400";
      teil6="window.innerWidth";
      teil7="window.pageYOffset";
      teil8="top";
    }
//Browsersniffing Ende

//Aktuelles Startseite
function checkLoca2() {
  object="aktu";
  posx=eval(teil6+"/2-385");
  eval(teil1+object+teil2+teil4+"posx");
}
//Aktuelles Startseite Ende

//Menuechange
function onOver(td){
  if(document.getElementById||(document.all && !(document.getElementById))){
    td.style.backgroundColor = "#00b8bf";
    td.style.cursor = "hand";
    td.style.borderTopColor = "#003030";
    td.style.borderLeftColor = "#003a3a";
    td.style.borderRightColor = "#00c0c7";
    td.style.borderBottomColor = "#00ccc3";
  }
}

function onOut(td){
  if(document.getElementById||(document.all && !(document.getElementById))){
    td.style.backgroundColor = "#004444";
    td.style.borderTopColor = "#008080";
    td.style.borderLeftColor = "#007474";
    td.style.borderRightColor = "#003a3a";
    td.style.borderBottomColor = "#003030";
  }
}

function onOverli(td){
  if(document.getElementById||(document.all && !(document.getElementById))){
    td.style.backgroundColor = "#00b8bf";
    td.style.cursor = "hand";
  }
}

function onOutli(td){
  if(document.getElementById||(document.all && !(document.getElementById))){
    td.style.backgroundColor = "#004444";
  }
}

function changeLoc(address){
  window.location.href = address;
}

function neuesfenster(welcheDatei,b,h,t,l)
{fenster=window.open(welcheDatei, 'f10', 'inner width=b, inner height=h, top=t, left=l');
 fenster.focus();
}
//Menuechange-Ende
