
function ein(aktuellerLink)
{
aktuellerLink.style.color="#7c8aa4";
aktuellerLink.style.textDecoration="underline";

}
function aus(aktuellerLink)
{
aktuellerLink.style.color="#464c64";
aktuellerLink.style.textDecoration="none";


}

function einL(aktuellerLink)
{
aktuellerLink.style.color="#C00040";
}
function ausL(aktuellerLink)
{
aktuellerLink.style.color="#401200";

}

function einN(aktuellerLink)
{
aktuellerLink.style.color="powderblue";
}
function ausN(aktuellerLink)
{
aktuellerLink.style.color="snow";

}

function TdColorNeu(Zahl)
 {
 document.all.tags("td")[Zahl].style.backgroundColor="gainsboro";
 document.all.tags("td")[Zahl].style.borderStyle="solid";
 document.all.tags("td")[Zahl].style.borderWidth=1;
 document.all.tags("td")[Zahl].style.borderColor="lightslategray";
 }
 function TdColorAktiv(Zahl)
 {
 document.all.tags("td")[Zahl].style.backgroundColor="silver";
 document.all.tags("td")[Zahl].style.borderStyle="solid";
 document.all.tags("td")[Zahl].style.borderWidth=1;
 document.all.tags("td")[Zahl].style.borderColor="lightslategray";
 
 }
 function TdColorAlt(Zahl)
 {
 document.all.tags("td")[Zahl].style.backgroundColor="lightgrey";
 document.all.tags("td")[Zahl].style.borderStyle="solid";
 document.all.tags("td")[Zahl].style.borderWidth=1;
 document.all.tags("td")[Zahl].style.borderColor="snow";
 }


