ausgewaehlt="";

function farbwechsel(id,farbe) {

if(id!=ausgewaehlt)
{
	if (document.all)
		document.all[id].style.backgroundColor=farbe;
	else
	if (document.getElementById)
		document.getElementById(id).style.backgroundColor=farbe;
	else
		void(0);

	}
}


//function klicken(id)
//{
////Alte markierte tabellenzelle merken
//alt=ausgewaehlt;
//
////Neu gewaehlte Tabellenzelle in der zentralen Variable speichern
//ausgewaehlt=id;
//
////Alte ausgewählte Tabellenzelle wieder hellgrau färben
//if(alt!="")
//{farbwechsel(alt,'#F0F0F0');}
//}