<!--
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]="    ********   T O D O ** P S I C O A N A L I S I S   ********  "
typ[1]="   ********   Telefono: (+ 54 11) 4831-2968   ********  "
typ[2]="     ******    Av. Santa Fe 3942  5บ  D    ******  "
typ[3]="    ********     Buenos Aires - Argentina    ********"
typ[4]="        กกกก Soluciones a Problemas de Fobias !!!!      "
typ[5]="           กกกก Ayuda en Problemas de Depresion !!!!         "
typ[6]="          ********   Ayuda en Problemas Familiares   ********     "
typ[7]="    ********   Telefono: (+ 54 11) 4831-2968   ********  "
typ[8]="          กกกก Ayuda en Problemas de Baja Estima !!!!       "
typ[9]="    *****    T O D O ** P S I C O A N A L I S I S  ***** "
typ[10]="    ****      Telefono: (+ 54 11) 4831-2968    ****"
typ[11]="   *****       Av. Santa Fe 3942 5บ D     ***** "
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()