<!--
var current = 0
var x = 0
var speed = 90
var speed2 = 2000
function initArray(n) {
  this.length = n;
  for (var i =1; i <= n; i++) {
    this[i] = ' '
 }
}
typ = new initArray(12)
typ[0]="    ******     P A G I N A S  DE ....      ******       "
typ[1]="            Construccion - Turismo - Pisos de Madera    "
typ[2]="     ******   Avisos Clasificados     ****** "
typ[3]="    ********    Publicidad en Internet      ********"
typ[4]="      ********    Avisos Clasificados en Internet      ********  "
typ[5]="    ******    P A G I N A S  DE ....      ******       "
typ[6]="         ******   Odontologos - Traumatogos - Odontologos       ******    "
typ[7]="      ********   Gasistas - Cerrajeros - Instalacion de Aires      ******** "
typ[8]="     ********  Diseρo de Paginas Web  ********  "
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()
