

var Count = 0;
var Text = "Polypharm-Inc.com   -   Polypharm   has   more   than   10   years   of   experience   in   Research   and   Development  (R&D)   in   an   Academic   and   Industrial   environment.   As   a   result,   we   offer   a   broad   range   of   high   quality   products,   process   development,   laboratory   and   industrial   chemicals,   reagents   and   Kits   such   as   strong   signal   chemiluminescent   substrate   for   horseradish   peroxidase   conjugated   antibody   for   luminescent   ELISA,   Western   blot   and   Dot   blot   immunological   analysis,   blood   identification   at   crime   scene   as   well   as   services   such   as   determination   of   an   antioxidant   activity,   free-radicals   mediated   oxidation   and   oxidative   stress.";
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(); 
