
function NavigNeu(img_name,img_src,aktuellerLink)
 {
 
 document[img_name].src=img_src;
 aktuellerLink.style.color="tan";
 
 aktuellerLink.style.background="#604b44";  
}
 

 function NavigAlt(img_name,img_src,aktuellerLink)
 {
 
 document[img_name].src=img_src;
 aktuellerLink.style.color="#fFffce";
 aktuellerLink.style.textDecoration="none";
 
}
function NavigAktiv(img_name,img_src,aktuellerLink)
 {
 
 document[img_name].src=img_src;
 aktuellerLink.style.color="tan";
 aktuellerLink.style.textDecoration="none";
 aktuellerLink.style.background="#604b44";  


}

function einL(aktuellerLink)
{
aktuellerLink.style.color="tan";
aktuellerLink.style.textDecoration="underline";
}
function ausL(aktuellerLink)
{
aktuellerLink.style.color="#fFffce";
aktuellerLink.style.textDecoration="underline";
}

function ein(aktuellerLink)
{
aktuellerLink.style.color="#fFffce";
aktuellerLink.style.textDecoration="underline";
}
function aus(aktuellerLink)
{
aktuellerLink.style.color="#fFffce";
aktuellerLink.style.textDecoration="none";
}
function einT(aktuellerLink)
{
aktuellerLink.style.color="tan";
aktuellerLink.style.textDecoration="underline";
}
function ausT(aktuellerLink)
{
aktuellerLink.style.color="#604b44";
aktuellerLink.style.textDecoration="underline";
}

function Fensterschliessen()
{
window.close();
}