<!--
var current = 0
var x = 0
var speed = 90
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 Acolchados - Fabrica de Colchas **** "
typ[1]=" ••• **** Toallas con Logotipo - Sabanas con Logotipo **** "
typ[2]=" ••• **** Colchas Portuguesas - Colchas por Mayor **** "
typ[3]=" ••• **** Acolchados Juveniles  - Acolchados Infantiles **** "
typ[4]=" ••• **** Venta de Colchas - Venta de Cubrecamas **** "
typ[5]=" ••• **** Acolchados de 2 plazas y Media - Sabanas de 2 Plazas y Media **** "
typ[6]=" ••• **** Colchas para Bebes - Acolchados para Bebes **** "
typ[7]=" ••• **** Cortinas para Comedor - Cortinas para Dormitorios **** "
typ[8]=" ••• **** Sabanas para Hoteles - Acolchados para Hoteles **** "
typ[9]=" ••• **** Covers por Mayor - Fabricante de Covers **** "
typ[10]=" ••• **** Venta por Mayor de Acolchados - Venta por Mayor de Cubrecamas **** "
typ[11]=" ••• **** Fabrica de Patchworks - Fabrica de Toallas ** "
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()
