<!--
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]=" •••   ** Fabrica de Bolsos Termicos  - Fabrica de Envases Termicos ** "
typ[1]=" •••   ****** Delantales Impresos - Chalecos Impresos ******      "
typ[2]=" •••   *** Cajas Termicas para Motos - Bolsos Termicos para Motos *** "
typ[3]=" •••   ******** Conservadoras Termicas - Bolsas Termicas ********"
typ[4]=" •••   ****** Fabrica de Pilotos - Venta de Pilotos ******       "
typ[5]=" •••   *****  Heladeritas de Telgopor - Heladeritas para Camping ***** "
typ[6]=" •••   ****** Envases Termicos - Bolsos Termicos ******    "
typ[7]=" •••   **** Fabrica de Conservadoras - Fabrica de Cubre Autos ****  "
typ[8]=" •••   *** Impresos para Pizzerias - Productos para Pizzerias ***  "
typ[9]=" •••   ** Bolsos para Envio de Pizzas - Bolsos para Envio de Comidas ** "
typ[10]=" •••  *** Delantales Plasticos - Delantales para Pizzerias *** "
typ[11]=" •••  ** Bolsos para Delivery de Comidas - Bolsos para Delivery de Pizzas **"
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()