<!--
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]=" •••   ********  A N T R A K  ********  "
typ[1]=" •••  ***  Fabricantes de Telas Vinilicas  ***"
typ[2]=" •••    ***  Venta de Telas Plasticas  ***"
typ[3]=" •••   ********     Fabricantes de Cueros Sinteticos    ********"
typ[4]=" •••    ***  Venta de Cuerinas  ***"
typ[5]=" •••   ***      Telas para Plantillas    *** "
typ[6]=" •••     ********   Venta de Cueros Sinteticos   ********  "
typ[7]=" •••   ********  Fabricantes de Telas Plasticas   ********  "
typ[8]=" •••   ****    Telas para Marroquinerias    **** "
typ[9]=" •••   *****   A N T R A K   ***** "
typ[10]=" •••   ****      Venta de Telas Vinilicas    ****"
typ[11]=" •••  *****  Telas para Calzados  ***** "
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()
