var TO;

function GetMessage() {
	var Str = '';
	for( var i = 0; i < MSG.length; i++ ) {
		Str += '<a href="' + MSG[ i ][2] + '">' + MSG[ i ][1] + '</a>' + ConCatMSG
	}
	Str = Str.substr( 0, Str.length - ConCatMSG.length );
	
	return Str;
}

function Ticker() {
	var DID = document.getElementById( ID );
	if ( parseInt( DID.style.left ) && parseInt( DID.style.left ) - 8 > WM ) {
		// Mehr als ein Aufruf
		DID.style.left = ( parseInt( DID.style.left ) - 8 ) + 'px';
		DID.style.clip = "rect(0px " + ( W - parseInt( DID.style.left ) ) + "px 20px auto )";
		DID.style.width = ( W - parseInt( DID.style.left ) ) + "px";
	}
	else {
		// Erster aufruf
		DID.style.left = parseInt( W ) + 'px';
		DID.style.clip = "rect(0px 0px 0px 0px)";
		DID.style.width = "0px";
	}
	TO = window.setTimeout( "Ticker()", T );

}

function Mouseover() {
	if ( TO ) {
		window.clearTimeout( TO );
		TO = null;
	}
	else {
		TO = window.setTimeout( "Ticker()", T );
	}
}

function start_ticker() {
	var DID = document.getElementById( ID )
	DID.innerHTML = GetMessage();	
	Ticker();
	
}
