  <!-- Hide from old browsers

  messagem    = "Seja Bem vindo ŕ Rádio Loanda Fm - 104,9^" +
                "A Rádio Comunitária de Loanda^" +
                "A nova Voz de Loanda^" +
                "www.radioloandafm.com.br ou 3425-4997^" +
                "^"
  scrollSpeed = 30
  lineDelay   = 1600

  // Do not change the text below //

  txt         = ""

  function scrollText(pos) {
    if (messagem.charAt(pos) != '^') {
      txt    = txt + messagem.charAt(pos)
      status = txt
      pauze  = scrollSpeed
    }
    else {
      pauze = lineDelay
      txt   = ""
      if (pos == messagem.length-1) pos = -1
    }
    pos++
    setTimeout("scrollText('"+pos+"')",pauze)
  }

  // Unhide -->
scrollText(0)

