// JavaScript Document

function Bildwechsel(Bildnr,Bildobjekt)
{
   window.document.images[Bildnr].src = Bildobjekt.src;
}

function changeCol(Nr,tf) {
var farb1="#111111", farb2="#000000";

if (document.all && !document.documentElement){
	if (tf){
		Nr.bgColor = farb1;
	}
	else{
		Nr.bgColor = farb2;
	}
}

if (document.getElementById){
	if (tf){
		Nr.style.backgroundColor=farb1;
	}
	else{
		Nr.style.backgroundColor=farb2;
	}
}

if (document.layers){
	if (tf){
		Nr.bgColor=farb1;
	}
	else{
		Nr.bgColor=farb2;
	}
}
}