<!--
x=0;
y=0;
function ScrollNews(x){
	if (document.getElementById){
		
		if (x>=-(document.getElementById("newstext").offsetHeight)){
			SetLayer('newstext','top',x+"px");
			y=x-2;
			nesc=setTimeout("ScrollNews(y)",140);
		}
		else {
			ScrollNews(150);
		}
	}
}

function SetLayer(LName,funct,wert) {
	if (document.getElementById){
		var newLayer = document.getElementById(LName).style;
		newLayer[funct]=wert;
	}
}

function StopScrolling(){
	window.clearTimeout(nesc);
}

function GoScrolling(){
	ScrollNews(y);
}
//-->
