function scroll(seed) { var m1 = "Welcome to our web pages - We present you a wide range of Hi-end audio products in which you will discover our *** famous PLATINE Verdier *** and our preamplifiers and Vacuum Tubes Amplifiers " var msg=m1; var out = " "; var c = 1; if (seed > 100) { seed--; var cmd="scroll(" + seed + ")"; timerTwo=window.setTimeout(cmd,100); } else if (seed <= 100 && seed > 0) { for (c=0 ; c < seed ; c++) { out+=" "; } out+=msg; seed--; var cmd="scroll(" + seed + ")"; window.status=out; timerTwo=window.setTimeout(cmd,100); } else if (seed <= 0) { if (-seed < msg.length) { out+=msg.substring(-seed,msg.length); seed--; var cmd="scroll(" + seed + ")"; window.status=out; timerTwo=window.setTimeout(cmd,100); } else { window.status=" "; timerTwo=window.setTimeout("scroll(100)",7); } } } timerONE=window.setTimeout('scroll(100)',50);