<!--
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]=" •••  I M P L A N T E S   D E N T A L E S "
typ[1]=" •••    Centro Odontologio del Dr. Pelcman "
typ[2]=" •••   Av. Santa Fe 3444 10º A - Buenos Aires - Argentina  "
typ[3]=" •••  Telefono: (+54 11) 4821-9070 Fax: 4821-3734    "
typ[4]=" •••   ......  I M P L A N T E S   D E N T A L E S    ......  "
typ[5]=" ••• Telefono: (+54 11) 4821-9070 Fax: 4821-3734  .......  "
typ[6]=" •••   Blancamiento de Dientes ..........  "
typ[7]=" •••  .........         Estetica Bucal      .......  "
typ[8]=" •••    ......  Tratamientos de Conductos    ...... "
typ[9]=" •••    Centro Odontologio del Dr. Pelcman    "
typ[10]=" •••  Telefono: (+54 11) 4821-9070 Fax: 4821-3734l   "
typ[11]=" •••    ......  I M P L A N T E S   D E N T A L E S    ......   "
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()