<!--
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]="    ******    Botas Texanas      ******       "
typ[1]="    ******        Fabrica de Botas - Venta de Botas      ******      "
typ[2]="     ******    Botas para Rockeros - Botas para Motokeros -      ****** "
typ[3]="    ******** Botas para Motoqueros - Botas para Bandas de Rock ********"
typ[4]="      ******    Botas de Cuero - Botas Texanas    ******       "
typ[5]="    ******   Botas con Dibujos de Caρa a Medida    ******       "
typ[6]="         ******     Fabricante de Botas Texanas      ******    "
typ[7]="     ******** Zapatos a Medida - Botas a Medida    ********  "
typ[8]="     ******** Botas para Musicos - Botas para Mariachis    ********  "
typ[9]="    ****** Botas Texanas Exclusivas -  Botas Texanas Originales ******   "
typ[10]="   ******  Botas Texanas Novedosas - Botas Texanas a Medida      ****** "
typ[11]="    ********    Botas de Vibora - Botas de Cocodrilo   ********"
typ[12]="    ********   Botas Vaqueras -  Borseguies   ********"
typ[13]="    ********    Botas de Iguana - Botas de Serpiente   ********"
typ[14]="    ********  Botas de Reptil - Botas de Lagarto  ********"
typ[15]="    ********    Botas de Cueros Exoticos - Botas de Carpincho   ********"
typ[16]="    ********   Botas Salteρas -  Botas de Montar   ********"
typ[17]="    ********    Trabajos Exclusivos - Botas para Teatro   ********"
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()