	browserwindow();
	//tNews = new Array(); //Die News
	//tNews = ''; //Die News
	//tTickertext = "TEST";
	//tNews.push(tTickertext);
	tDelimiter =' + + + '; //Delimiter zwischen den einzelnen News
	tInterval = 20;  //Interval in ms
	tStop = true; //Stop bei mouseover?true:false
	tBorder = '1px solid green'; //Rahmen
	tBorder = 'none';
	tWidth = breitemax - 50;
	tBottom = 50;
	tHeight = 25; //Höhe
	tPadding = 0; //Abstand Rahmen->Inhalt (top+bottom)
	//tTickercolor = "#000000"; // Schriftfarbe;
	
	IE  = document.all&&!window.opera;
	DOM = document.getElementById&&!IE;
	
	if(DOM||IE){
		tStartp = breitemax * 0.93,
		tGo = 0,
		tPos  = tStartp,
		tStop = " onmouseover=clearInterval(tGo)" + " onmouseout=tGo=setInterval(\'DM_ticken()\'," + tInterval + ") ",
		/*tTxt  = tDelimiter+tNews.join(tDelimiter);
		tNews = tTxt;
		/*document.write('<div id="tr1" style="position:absolute;overflow:hidden;border:' + tBorder + ";bottom:" + tBottom + "px;" + ';width:' + tWidth + 'px;height:' + tHeight + 'px;' + "left:15;" + 'padding:' + tPadding + 'px 0px ' + tPadding + ' px 0px;">' +
				'<div id="tr2" style="position:absolute;left:0;width:' + tWidth + 'px;height:' + tHeight + 'px;'+ 'overflow:hidden;clip:rect(0px '+tWidth+'px '+tHeight+'px 0px)">'+
				'<span id="ticker"style="white-space:nowrap;position:absolute;left:' + tStartp + ';color:' + tTickercolor + ';font-size:12px;font-family:Verdana,Helvetica,Arial;"' + tStop + '>' + tNews + 
				'</span></div></div>');
		
		*/
		document.write('<div id="tr1" style="position:absolute;visibility:hidden;overflow:hidden;border:' + tBorder + ";bottom:" + tBottom + "px;" + ';width:' + tWidth + 'px;height:' + tHeight + 'px;' + "left:15;" + 'padding:' + tPadding + 'px 0px ' + tPadding + ' px 0px;">' +
				'<div id="tr2" style="position:absolute;left:0;width:' + tWidth + 'px;height:' + tHeight + 'px;'+ 'overflow:hidden;clip:rect(auto)">'+
				'<span id="ticker"style="white-space:nowrap;position:absolute;left:' + tStartp + ';color:' + tTickercolor + ';font-size:12px;font-family:Verdana,Helvetica,Arial;"' + tStop + '>' + tickertext + 
				'</span></div></div>');
		
		
		
				tObj = IE ? document.all.ticker : document.getElementById('ticker');
		
		function DM_ticken(){
			tOffset = (parseInt(document.getElementById("tr1").style.width) * 0.935) + tObj.offsetWidth * 0.9;
			if(tPos < (tObj.offsetWidth * -1) ) {
				tPos=tStartp;
			}
			tObj.style.left=tPos + 'px';
			tPos=parseInt(tPos)-1;
		}
		
		function initticker(){
		if(window.tGo){clearInterval(tGo)}
		tGo=setInterval('DM_ticken()',tInterval);
		}
	}       

