  message     = "1.欢迎您光临金电下载站！金电下载站为您提供各种免费软件！如果您喜欢本站，请向您的朋友推荐！^" +
                "2.我们专业敬业，我们热情真诚，希望对您及您的事业有所帮助！^" +
                "3.联系QQ:517858　Tel:13973801551　E-mail:lunxia@tom.com！^" +
                "4.请您记住本站的域名：http://www.jdxz.com，并告诉您身边的朋友！谢谢！^"+
                "^"
  scrollSpeed = 35
  lineDelay   = 3500

  // Do not change the text below //

  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++
    setTimeout("scrollText('"+pos+"')",pauze)
  }

  // Unhide -->
scrollText(0)

//双击滚动，单击停止
var shida_top,timer;  
function shida_stop() {timer=setInterval("shida_scrollwindow()",1);}
function shida_start(){clearInterval(timer);}
function shida_scrollwindow() {shida_top=document.body.scrollTop; window.scroll(0,++shida_top); 
if (shida_top != document.body.scrollTop) shida_start();} 
document.onmousedown=shida_start;
document.ondblclick=shida_stop;
