// JavaScript Document

msg = "Marquant Kindermode - WC Lange Voort - Oegstgeest - 071-5173179"
timeID = 10;
stcnt = 16;
wmsg = new Array(1);
        wmsg[0]=msg;
        blnk = "                                                               ";
        for (i=1; i<32; i++)
        {
                b = blnk.substring(0,i);
                wmsg[i]="";
                for (j=0; j<msg.length; j++) wmsg[i]=wmsg[i]+msg.charAt(j)+b;
        }
 
function wiper()
{
        if (stcnt > -1) str = wmsg[stcnt]; else str = wmsg[0];
        if (stcnt-- < -1000) stcnt=1000;
        status = str;
        clearTimeout(timeID);
        timeID = setTimeout("wiper()",100);
}
 
wiper()







