<!--
var current = 0
var x = 0
var speed = 50
var speed2 = 2000
function initArray(n) {
  this.length = n;
  for (var i =1; i <= n; i++) {
    this[i] = ' '
 }
}
typ = new initArray(12)
typ[00]=" •••  Bolsas para Vinos - Bolsas para Regalos  "
typ[01]=" •••  Venta de Bolsas de Tela - Fabrica de Bolsas de Tela  "
typ[02]=" •••  Bolsas con Logo - Bolsas Impresas  "
typ[03]=" •••  Packaging en Tela - Packaging para Vinos  "
typ[04]=" •••  Bolsas para Boutique - Bolsas para Ropa  "
typ[05]=" •••  Articulos para Souvenirs - Articulos para Cotillon  "
typ[06]=" •••  Bolsas por Mayor - Bolsas de Tela  "
typ[07]=" •••  Fabrica de Packaging - Fabrica de Bolsas de Tela  "
typ[08]=" •••  Bolsas para Souvenirs - Bolsas para Cotillon  "
typ[09]=" •••  Productos para Packaging - Productos para Souvenirs  "
typ[10]=" •••  Bolsas de Fabrica - Bolsas en Venta  "
typ[11]=" •••  Venta de Packaging - Venta de bolsas  "
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()
