// JavaScript Document
<!--
var scroll = new setMessage()

function setMessage() {
  this.msg = "Wellcome to Institute for Research & Development"
  this.out = " "
  this.pos = 30       //  how wide is the scroller?
  this.delay = 100      //  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()
// -->
