<!-- Hide this from older browsers
var Text = "Laat uw vloer beoordelen door een specialist...........      Egaliseerbedrijf Gerard............     VERSTAND VAN VLOEREN!!!";
var Speed =90;

var Count = 0;
var timerID = null;
var TimerRunning = false;

var i = 0;
while (i ++ < 140)
Text = " " + Text;

function Scroll(){
window.status = Text.substring(Count++, Text.length);
if (Count == Text.length)
Count = 0;
timerID = setTimeout("Scroll()", Speed);
TimerRunning = true;
}

function Start(){
Stop();
Scroll();
}

function Stop(){
if(TimerRunning)
clearTimeout(timerID);
TimerRunning = false;
}

Start(); 

// end hide -->