<!--
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]="    ******   CASA TORO      ******       "
typ[1]="          Juan Ramirez de Velasco 923 - Buenos Aires - Argentina              "
typ[2]="       ******      Telefonos ( +54 11) 4774-8736 / 154-033-7127      ******         "
typ[3]="        Gasitas Matriculados      "
typ[4]="    ********     Instalaciones de Caρerias de Gas      ********"
typ[5]="       ******    CASA TORO       ******         "
typ[6]="             Telefonos ( +54 11) 4774-8736 / 154-033-7127             "
typ[7]="    ******   Gasitas Matriculados de Emergencias      ******       "
typ[8]="         ******   Mantenimiento de Consorcios y Edificios       ******    "
typ[9]="           Telefonos ( +54 11) 4774-8736 / 154-033-7127     "
typ[10]="     ********    Plomeria y Electricidad    ********  "
typ[11]="           Instalacion de Medidores de Gas            "
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()