// Newsticker V 1.0
// mit include des Textes

   var d, e = 0;
     function ticker()
     {
	     var a, b, c;
		 c = get_ticker_text();
	     b=(200 / c.length) + 1;
	     for (a=0; a <=b; a=a + 1) c +=" " + c;
	     document.ticker.laufband.value=c.substring(e, e + 200);
	     if (e++==200) e = 0;
	     d = setTimeout("ticker()",200);
     }

