<!--
onerror=null;
	var browser=(navigator.appName=="Netscape");
	var iDOM = (document.childNodes);


   function initticker(){
   //////////////////////
    aktiv = (browser) ? window.setInterval("newtext()",100) : window.setInterval("newtext()",100);
   }

   function newtext(){
   ///////////////////
    var mytext = document.Formular.ticker.value;
    var newlast = mytext.slice(0,1)
    mytext = mytext +'@';
    var endpos =mytext.lastIndexOf("@");
    var newtxt = mytext.slice(1,endpos);
    mytext = newtxt + newlast;
    document.Formular.ticker.value = mytext;
   }


   var doMoveBy = -1;
   var doWaitOnStop = 10;
   var countStop = 0;
   var baseTop = 0;
   var doAdd = 2;
   var runStat = false;

   function getLayer( name){
   ////////////////////////
		var myObj = '';
		if (iDOM){
			myObj = 'document.getElementById("'+name+'").style';
		} else {
			if (browser){
				myObj="document."+name;
			} else {
				myObj = 'document.all.'+name+'.style';
			}
		}
		myObj = eval(myObj);
		//alert(myObj);
		
		return myObj;
   }

   function initTicker2(name, visHeight, divHeight, moveBy, doStop, waitOnStop){
   /////////////////////////////////////////////////////////////////////////////
		runStat=false;
		initTicker2_int(name, visHeight, divHeight, moveBy, doStop, waitOnStop);
		if (!runStat)
		{
			window.setTimeout("initTicker2('"+name+"', "+visHeight+", "+divHeight+", "+moveBy+", "+doStop+", "+waitOnStop+");", 100);
			return false;
		} else return true;
   }


   function initTicker2_int(name, visHeight, divHeight, moveBy, doStop, waitOnStop){
   /////////////////////////////////////////////////////////////////////////////
		var myObj = getLayer(name);
		
		if (doStop==null){
			doStop=0;
		}
		if (divHeight==null) {
			var ds=myObj.height;
			divHeight=parseInt(ds)+0;
		}
		if (moveBy!=null){
			doMoveBy=moveBy;
		}
		if (waitOnStop!=null){
			doWaitOnStop = waitOnStop;
		}
		myObj.visibility ="hidden";
		myObj.top=visHeight;
		if (divHeight<0){divHeight =(-1)*divHeight}

		if ((browser)&&(!iDOM)){
			var divWidth = myObj.clip.width;
		} else {
			var divWidth = 0;
		}

		if ((browser)&&(!iDOM))
		{	
			//myObj.resizeTo(300 , Math.abs(divHeight));
		}

		window.setInterval("newTick2('"+name+"', "+visHeight+", "+divHeight+", "+divWidth+", "+doStop+")", 100);

		runStat = true;
		return runStat;
   }

   function newTick2( name, visHeight, divHeight, divWidth, doStop){
   //////////////////////////////////////////////////////
		if (countStop>0){
			countStop = countStop-1;
			return;
		}

		var myObj = getLayer(name);
	
		var ds=myObj.top;
		var myTop=parseInt(ds)-doAdd; 
		var oldTop = myTop;
		
		myTop = myTop + doMoveBy;
		if ((doStop!=null)&&(doStop!=0)){
			if (((myTop+2)%doStop)==0){
				countStop=doWaitOnStop;
			}
		}

		if ((((-1)*myTop)>divHeight)&&(doMoveBy<0))
		{
			myTop=visHeight;
		}

		if (((myTop)>visHeight)&&(doMoveBy>0))
		{
			myTop=-divHeight;
		}
		//myTop=5;

		
		myTop = myTop + doAdd;
		myObj.top = myTop;
		myTop = myTop * (-1);
		if ((browser)&&(!iDOM))
		{	
			if (myObj.visibility!="show"){
				myObj.visibility="show";
			}
			
			myObj.clip.top= myTop;
			myObj.clip.bottom = myTop + visHeight;
			
			
			myObj.resizeTo(divWidth , Math.abs(myTop + visHeight));

			
			//document.Formular3.stat.value = 'myTop= '+myTop+', Top='+myObj.top+', clip.top='+myObj.clip.top+', clip.height='+myObj.clip.height; 
		} else {
			myObj.height = Math.abs(myTop + visHeight);
			//rect(topSpace, width, height, leftSpace)
			myObj.clip= "rect("+myTop+"px auto "+(myTop+visHeight)+"px auto)";
			if (myObj.visibility!="visible"){
				myObj.visibility="visible";
			}
		}

		
		
   }
//-->
