<!--
var current = 0
var x = 0
var speed = 20
var speed2 = 2000
function initArray(n) {
  this.length = n;
  for (var i =1; i <= n; i++) {
    this[i] = ' '
 }
}
typ = new initArray(12)
typ[0]=" •••   ** Membranas Termicas – Aislantes Termicos ** "
typ[1]=" •••   *** Plastico para Embalaje – Polietileno para Embalaje ***      "
typ[2]=" •••   *** Venta de Membranas – Fabrica de Membranas *** "
typ[3]=" •••   **** Aislacion de Techos – Aislacion de Tinglados ****"
typ[4]=" •••   ******** Fabrica de Aislantes Termicos ********       "
typ[5]=" •••   *******  Techos de Galpones – Techos de Teja ******* "
typ[6]=" •••   ** Polietileno con Burbujas – Polietileno con Globitos **    "
typ[7]=" •••   * Aislacion de Galpones – Aislacion de Naves Industriales *  "
typ[8]=" •••   *** Techos de Chapa – Techos de Fabricas - Techos de Zinc ***  "
typ[9]=" •••   ** Aislantes Termicos Antifrio y Aislantes Termicos Anticalor ** "
typ[10]=" •••  ***** Membranas para Techos – Membranas de Aluminio ***** "
typ[11]=" •••  **** Aislantes Termicos – Aislantes Acusticos ****"
function typewrite() {
var m = typ[current]
window.status = m.substring(0, x++) + "•••••••"
if (x == m.length + 1) {
x = 0
current++
if (current > typ.length - 1) {
current = 0
}
setTimeout("typewrite()", speed2)
}
else {
setTimeout("typewrite()", speed)
}
}
typewrite()