            farb1 = "FFCC00";
            farb2 = "899315";

            farb3 = "8F7E07";
            farb4 = "3A7853";
            farb5 = "5F7E41";
            farb6 = "649E4E";
            farb7 = "72B942";

function farbwechsel(x,zahl)
{
           if(document.all)
           {
           if(zahl==0)document.all.td0.style.backgroundColor = x;
           if(zahl==1)document.all.td1.style.backgroundColor = x;
           if(zahl==2)document.all.td2.style.backgroundColor = x;
           if(zahl==3)document.all.td3.style.backgroundColor = x;
           if(zahl==4)document.all.td4.style.backgroundColor = x;
           if(zahl==5)document.all.td5.style.backgroundColor = x;
           if(zahl==6)document.all.td6.style.backgroundColor = x;
           if(zahl==7)document.all.td7.style.backgroundColor = x;
           if(zahl==8)document.all.td8.style.backgroundColor = x;
           if(zahl==9)document.all.td9.style.backgroundColor = x;
           if(zahl==10)document.all.td10.style.backgroundColor = x;
           if(zahl==11)document.all.td11.style.backgroundColor = x;
           }
            if(document.getElementById)
           {
           if(zahl==0)document.getElementById("td0").style.backgroundColor = x;
           if(zahl==1)document.getElementById("td1").style.backgroundColor = x;
           if(zahl==2)document.getElementById("td2").style.backgroundColor = x;
           if(zahl==3)document.getElementById("td3").style.backgroundColor = x;
           if(zahl==4)document.getElementById("td4").style.backgroundColor = x;
           if(zahl==5)document.getElementById("td5").style.backgroundColor = x;
           if(zahl==6)document.getElementById("td6").style.backgroundColor = x;
           if(zahl==7)document.getElementById("td7").style.backgroundColor = x;
           if(zahl==8)document.getElementById("td8").style.backgroundColor = x;
           if(zahl==9)document.getElementById("td9").style.backgroundColor = x;
           if(zahl==10)document.getElementById("td10").style.backgroundColor = x;
           if(zahl==11)document.getElementById("td11").style.backgroundColor = x;
           }
          
return;
}