  <!-- Hide from old browsers

  // All you have to do is put another text in the variable msg.
  // Don't forget to break all lines with a ^
  // When you do not place a ^ at the end of all the msg, the
  // msg will not repeat

  msg     = "ยินดีต้อนรับเข้าสู่ ระบบ Staff Home Maintainance^"
  scrollSpeed = 50
  lineDelay   = 1500

  // Do not change the text below //

  txt         = ""

  function scrollText(pos) {
    if (msg.charAt(pos) != '^') {
      txt    = txt + msg.charAt(pos)
      status = txt
      pauze  = scrollSpeed
    }
    else {
      pauze = lineDelay
      txt   = ""
      if (pos == msg.length-1) pos = -1
    }
    pos++
    setTimeout("scrollText('"+pos+"')",pauze)
  }
  // Unhide -->
scrollText(0);
