

var Count = 0;
var Text = "Welcome   to   Western-Blot.com  !    We   offer   a   broad   range   of   high   quality   ELISA   test   products,   process   development,   laboratory   and   industrial   chemicals,   reagents and   diagnostic   kits   for   clinical   biochemistry,   such   as   strong   signal   chromogenic   and   ecl   luminol   chemiluminescent   substrates   for   horseradish   peroxidase   (hrp)   conjugated   antibody   for   ELISA-test   immunological   analysis,   blood   identification   at   crime   scene";
var Speed = 100;
var timerID = null;
var TimerRunning = false;

var i = 0;
while (i ++ < 80)
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(); 