<!--
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(10)
typ[0]=" •••   *****     C O P A H U E   ***** "
typ[1]=" •••   ***   Termas en Copahue : Vacaciones en Copahue   ***  "
typ[2]=" •••  *** Agencias de Turismo : Agencias de Viajes ***"
typ[3]=" •••  **  Paquetes Turisticos a Termas : Paquetes Turisticos a Copahue  **"
typ[4]=" •••   ***  Baños de Barro : Baños de Lodo : Baños de Fango  ***"
typ[5]=" •••    ****   Turismo en Copahue : Turismo en Caviahue   ****"
typ[6]=" •••   ***  Complejos Termales : Baños Termales  *** "
typ[7]=" •••   ***  Excursiones a Caviahue : Excursiones a Copahue  *** "
typ[8]=" •••   ***  Empresas de Viajes : Empresas de Turismo   ***  "
typ[9]=" •••   ***  Centros Termales : Aguas Termales  *** "

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()
