function zelleOver(dieZelle){	if(document.getElementById || document.all){		dieZelle.style.backgroundColor="#ffffff";	}}function zelleOut(dieZelle){	if(document.getElementById || document.all){		dieZelle.style.backgroundColor="transparent";	}}function launchWin(FilePath,WinTitle,WinWidth,WinHeight)	{	var newWin = window.open(FilePath,WinTitle,'resizable=no,location=no,directories=no,status=no,menubar=no,scrollbars=yes,toolbar=no,width='+WinWidth+',height='+WinHeight);	newWin.resizeTo(WinWidth,WinHeight);	newWin.focus();}function do_ticker(text, pos, startPos)	{	return;	//momentan inaktiv	if (pos < maxlength) startPos =  0;	else   startPos++;		//wenn html-Sonderzeichen bei startPos	if (text.substring(startPos,startPos+1) == "&") {		startPos = text.indexOf(";",startPos)+1; //abschneiden bis ";"	}	var out = text.substring(startPos,Math.min(pos+1,text.length));		//wenn html-Sonderzeichen	if (out.substring(0,1) == "&") {		aktVersatz = out.indexOf(";")+1; //abschneiden bis ";"		out = out.substring(aktVersatz,out.length);		pos += aktVersatz+1;	}	if (navigator.userAgent.indexOf("Netscape") > 0 && document.getElementById) {		document.getElementById("tickertext").firstChild.nodeValue = out;	}	else	ticker.innerHTML = out;		pos++;			if (out.length <= 0)	{		setTimeout('do_ticker("'+text+'",0,0)', 800);	//am Ende laenger warten	}	else	setTimeout('do_ticker("'+text+'",'+pos+','+startPos+')', delay);	}