<!--
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]="    ********  J. L. Construcciones   ********  "
typ[1]="   ********   Telefono: (+ 54 11) 4605-1600   ********  "
typ[2]="     ******    Guamini 5327 - Buenos Aires - Argentina     ******  "
typ[3]="    ********  Montajes de Obras      ********"
typ[4]="        กกกก   Planos Municiplales   !!!!      "
typ[5]="           กกกก Estructuras de Hormigon Armado !!!!         "
typ[6]="          ********  Reformas de Casas y Locales   ********     "
typ[7]="    ********  J. L. Construcciones   ********  "
typ[8]="          กกกก  Instalaciones de Gas  !!!!       "
typ[9]="    *****    Obras Civiles  ***** "
typ[10]="    ****     Telefono: (+ 54 11) 4605-1600    ****"
typ[11]="   *****      Ampliaciones y Construcciones     ***** "
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()