 message     =  "Welcome  t o  T a n z e e m - e - I s l a m i !  ^" +
                "h t t p : / / w w w . t a n z e e m . o r g   ^" +
                "If this site is blocked then you can also visit us at - h t t p : / / w w w . t a n z e e m . o r g . p k   ^" +
                "     "+ 
                "^"
  scrollSpeed = 65
  lineDelay   = 3900
  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)

