


function einL(aktuellerLink)
{
aktuellerLink.style.color="#03233a";
aktuellerLink.style.textDecoration="underline";

}
function ausL(aktuellerLink)
{
aktuellerLink.style.color="#EFEFEF";
aktuellerLink.style.textDecoration="none";
}


function ein(aktuellerLink)
{
aktuellerLink.style.color="#FF9F00";
aktuellerLink.style.textDecoration="underline";

}
function aus(aktuellerLink)
{
aktuellerLink.style.color="#3F3F3F";
aktuellerLink.style.textDecoration="none";
}


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;
}
