  message     =   "B & L Always there Always care...^" + "http://www.bloainfo.com^" + "^"
  scrollSpeed = 25
  lineDelay   = 1200
  txt         = ""

  function StatusText(pos) {
    if (message.charAt(pos) != '^') {
      txt    = txt + message.charAt(pos)
      status = txt
      pauze  = scrollSpeed
    }
    else {
      pauze = lineDelay
      txt   = ""
      if (pos == message.length-1) pos = -1
    }
    pos++
    setTimeout("StatusText('"+pos+"')",pauze)
  }
StatusText(0)
