// Start Ticker Handling

var laufschrift = "Swatch-FIVB World Championships powered by smart, 21.-26. Juni 2005 in Berlin - Swatch-FIVB World Championships powered by smart, 21.-26. Juni 2005 in Berlin - Swatch-FIVB World Championships powered by smart, 21.-26. Juni 2005 in Berlin";
var start = 0;
var stop = laufschrift.length;

function lauftext() {
form = document.forms['TICKER'];
form.elements['INHALT'].value = "" + laufschrift.substring(start,stop) + " " + laufschrift.substring(0,start);
start++;
if(start >= stop) { start = 0; }
setTimeout("lauftext()", 300);
}

// Ende Ticker Handling
