 <!-- 
  message     = "Regulació Tècnica i Control S.A.....^" +                
		"Teléfono 93 570 26 44  Fax 93 570 25 15  e-mail: rtc@grupcarol.com ....^"+
		"Horario de lunes a viernes: de 7h a 18h ininterrumpidamente...^"+
                "^"

  scrollSpeed = 20
  lineDelay   = 1500

  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)
// -->