// More JavaScript - Visit: http://www.xfunda.com/
// JavaScript Message Marquee at Status Bar of web browser
<!--
var scroll = new setStatusmessage()

function setStatusmessage() {
  this.msg = "This is Scrolling Message...!!!"
  this.out = " "
  this.pos = 100       //  how wide is the scroller?
  this.delay = 50      //  milliseconds between shifts
  this.i     = 0
 }

function scroller() {
  for (scroll.i = 0; scroll.i < scroll.pos; scroll.i++) {
    scroll.out += " "
  }

  if (scroll.pos >= 0)
   scroll.out += scroll.msg
  else scroll.out = scroll.msg.substring(-scroll.pos,scroll.msg.length)
  window.status = scroll.out
  scroll.out = " "
  scroll.pos--
    if (scroll.pos < -(scroll.msg.length)) {
   scroll.pos = 100
   }
   setTimeout ('scroller()',scroll.delay)
}
scroller()
// -->

