function formHandlerD(){
var URL = document.formD.AuswahlD.options
[document.formD.AuswahlD.selectedIndex].value;
window.location.href = URL;
}

function formHandlerE(){
var URL = document.formE.AuswahlE.options
[document.formE.AuswahlE.selectedIndex].value;
window.location.href = URL;
}

function einL(aktuellerLink)
{
aktuellerLink.style.color="#FF9F00";
aktuellerLink.style.textDecoration="underline";

}
function ausL(aktuellerLink)
{
aktuellerLink.style.color="#006666";
aktuellerLink.style.textDecoration="none";
}

function einM(aktuellerLink)
{
aktuellerLink.style.color="#03233a";
aktuellerLink.style.textDecoration="underline";
verberge('Bericht')

}
function ein(aktuellerLink)
{
aktuellerLink.style.color="#03233a";
aktuellerLink.style.textDecoration="underline";

}
function aus(aktuellerLink)
{
aktuellerLink.style.color="#EFEFEF";
aktuellerLink.style.textDecoration="none";
}

function zeige(Auswahl)
   {
        var vLayer=document.getElementById(Auswahl);
        var layerPosition =parseInt(vLayer.style.left);
        if (layerPosition <0){vLayer.style.left =(layerPosition +340)+"px"; };

   }

function verberge(Alt) {
var vLayer = document.getElementById(Alt);
vLayer.style.left ="-200";
}
