var laufschrift ="Click here for KSA Video +++ Click here for KSA Video +++";
var start = 0;
var stop = laufschrift.length;
var zzz = "continue";

function lauftext() {
document.ticker.ticker.value = "" + laufschrift.substring(start,stop) + " " + laufschrift.substring(0,start);
start++;
if(start >= stop) { start = 0; }
if(zzz == "continue") { setTimeout("lauftext()", 200);}
}

function lauftextStopp(){
zzz = "STOP"
}

function lauftextContinue(){
zzz = "continue";
lauftext();
}