function changeCol(id,farbe) 
{
 if (document.all)
 document.all[id].style.backgroundColor=farbe;
 else
 if (document.getElementById)
 document.getElementById(id).style.backgroundColor=farbe;
 else
 if (document.layers)
 document.layers[id].bgColor=farbe;
}



