<!--
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]="    กกกก  Psiquico DANIEL  !!!!   "
typ[1]="     ฟฟฟฟ Problemas de Pareja ????  "
typ[2]="     กกกก Rituales de Magia Blanca de alta efectividad !!!!  "
typ[3]="    กกกก Cortes de Trabajos de Magia Negra !!!!."
typ[4]="    Recupere su ser amado para siempre  !!!!!!!!!!  "
typ[5]="    กกกกกก 15 a๑os de trayectoria !!!!!! :-)  "
typ[6]="    กกกกกก  Curas de Campos !!!!!! "
typ[7]="    Consultas via mail  "
typ[8]="    Soluciones Efectivas    "
typ[9]="    Seriedad y Responsabilidad Profesional    "
typ[10]="    Ayuda en problemas Personales y Familiares !!!!!!   "
typ[11]="    Recupere su ser amado para siempre !!!!!!  "
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()
