  message  = "^" +
                  "实时指数，自动刷新，欢迎使用！^" +
                  "如果喜欢，别忘了放进收藏夹！^" +
                  "如果喜欢，请推荐给您的朋友！^" +
                  "自动指数查询跟踪系统！^" +
                  "^"
  scrollSpeed = 100
  lineDelay = 3000
  txt = ""

  function scrollText(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++
    if (pos < message.length-1) setTimeout("scrollText('"+pos+"')",pauze)
  }

//scrollText(0)
window.setTimeout("scrollText(0)",1000);