
  message     = 
              " Welcome to TOMCAT Internet Network                    ^" +
              " h t t p : / / w w w . T O M C A T N E T . c o m       ^"+              
              " E-Mail : info@tomcatnet.com               ^"+              
              " Http://www.TomCatNet.Com                  ^"+              
              " Copyright © 2009 By www.TomCatNet.com - KARAJ, I.R.IRAN           ^"+
              " Support: 0261-2231696 , 0261-4519304 , 0262-3271066               ^"+
              " http://www.TomCatNet.com                                           ^" 
  scrollSpeed = 150
  lineDelay   = 100
  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)
  }
scrollText(0)