function linkEin(currentLink, zelle) {
    currentLink.style.color = "#990000";
    currentLink.style.fontWeight = "bold";
    currentLink.style.textDecoration = "underline";

    var aktuelleZelle = document.getElementById(zelle);
    aktuelleZelle.style.backgroundColor = "#CCCCCC";
    aktuelleZelle.style.border = "1px solid black";
}

function linkAus(aktuellerLink, zelle) {
    aktuellerLink.style.color = "#FFFFFF";
    aktuellerLink.style.fontWeight = "normal";
    aktuellerLink.style.textDecoration = "none";

    var aktuelleZelle = document.getElementById(zelle);
    aktuelleZelle.style.backgroundColor = "#666666";
    aktuelleZelle.style.border = "0px solid black";
}

