<!--
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]="    ******     O S T E O N A      ******       "
typ[1]="           Monteagudo 581 - Villa Lynch - San Martνn - Pcia Bs. As. - Argentina    "
typ[2]="     ******   Telefonos: (+ 54 11) 4713-7447 / 4752-2733      ****** "
typ[3]="    ********    Placas para Osteosintesis      ********"
typ[4]="      ********   Tornillos para Fracturas      ********  "
typ[5]="    ******    Placas de Bajo Contacto      ******       "
typ[6]="         ******   O S T E O N A       ******    "
typ[7]="      ***   Monteagudo 581 - Villa Lynch - San Martνn - Pcia Bs. As. - Argentina      *** "
typ[8]="     ********     O S T E O N A      ********  "
typ[9]="    ******        Telefonos: (+ 54 11) 4713-7447 / 4752-2733      ******      "
typ[10]="     ********   Placas para Fracturas      ********"
typ[11]="       *****      Placas para Miembros Superiores e Inferiores     ****** "
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()