

var Count = 0;
var Text = "Please,   visit   BioMedTalk.com   for   discussion   and   ideas   exchange,   posting   commentary   and   articles   related   to   the   scientific   and   medical   dimensions   of   life-science,   medical   as   well   as   health   research.";
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(); 
