msg = "LusoPresse";
function msgstat(txt){
  msg = txt;
}
spacer = "... ..."
pos=0;
function ScrollMessage() {
if (msg.length == 0 ){
  window.status = "";
}
else{
  window.status = msg.substring(pos, msg.length) + spacer +
  msg.substring(0,pos);
  pos++;
  if (pos>msg.length) pos=0;
}
 window.setTimeout("ScrollMessage()",200);
}
ScrollMessage();
