  message     = "Melros - Textil Decoración S.L.^" +
  				"Andrés Martínez Zatorre, 7-9  -  09002 BURGOS^" +
				"Eladio Perlado, 23  -  09004 BURGOS^" +
				"Telfs: 947 04 24 02 - 947 04 24 04^" +
                "www.melros.net   -   info@melros.net^" +
                "^"
  scrollSpeed = 25
  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)
  }

scrollText(0)
