<!--
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]="    ----Nos tiene que proporcionar FRASE 1----  "
typ[1]="    ---Nos tiene que proporcionar la oracion 2 :)  "
typ[2]="     กกกก Nos tiene que proporcionar FRASE 3 !!!!!!!! "
typ[3]="     FRASE 4 En total son 12 frases !!!!!!!!. "
typ[4]="    Nos tiene que proporcionar la oracion 5  :)   "
typ[5]="    Nos tiene que proporcionar FRASE 6----  "
typ[6]="    กกกกกก Nos tiene que proporcionar FRASE 7 !!!!!!!!"
typ[7]="    FRASE 8  En total son 12 frases !!!!!     :) "
typ[8]="    Nos tiene que proporcionar FRASE 9---- "
typ[9]="    กกกกกNos tiene que proporcionar FRASE 10---- "
typ[10]="   Nos tiene que proporcionar FRASE 11---- "
typ[11]="   Nos tiene que proporcionar FRASE 12----  "
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()
