/* A ticker text
 * (C) 2007 Dr. Jürgen Vollmer <www.informatik-vollmer.de>
 */
var verzoegerung=150;
var nachricht = "";
var timerId;
function ticker() {
 text=nachricht;
 document.ticker_form.ticker.value=text;
 nachricht=nachricht.substring (1, nachricht.length) + nachricht.substring (0, 1);
 timerId=setTimeout("ticker()", verzoegerung);
}
/**************************************************************************************/
