<!--
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(20)
typ[0]="   DENTAL URBINA RODRIGUEZ S.A.C. "
typ[1]="   Centro de Estetica y Rehabilitacion Oral "
typ[2]="   Pasaje Manuel Castaρeda 276 Santa Beatriz "
typ[3]="   Telefono: (+51 1) 471-9629 Cel: (+51 1) 9761-5008    "
typ[4]="   ......  IMPLANTES DENTALES  ......  "
typ[5]="   Telefono: (+51 1) 471-9629 Cel: (+51 1) 9761-5008  .......  "
typ[6]="   .......... BLANQUEAMIENTO DENTAL ..........  "
typ[7]="   .......       ESTETICA ORAL Y DISEΡO DE LA SONRISA      .......  "
typ[8]="   ......  ENDODONCIA, PULPECTOMIA, PULPOTOMIA, RPD, RPI    ...... "
typ[9]="   ......  CIRUGIA MAXILOFACIAL    ...... "
typ[10]="   Telefono: (+51 1) 471-9629 Cel: (+51 1) 9761-5008   "
typ[11]="   ......  ORTODONCIA FIJA Y REMOVIBLE    ......   "
typ[12]="   DENTAL URBINA RODRIGUEZ S.A.C. "
typ[13]="   Centro de Estetica y Rehabilitacion Oral "
typ[14]="   Pasaje Manuel Castaρeda 276 Santa Beatriz "
typ[15]="   Telefono: (+51 1) 471-9629 Cel: (+51 1) 9761-5008    "
typ[16]="   ......  OPERATORIA DENTAL  ......  "
typ[17]="   Telefono: (+51 1) 471-9629 Cel: (+51 1) 9761-5008  .......  "
typ[18]="   .......... CARILLAS ESTETICAS ..........  "
typ[19]="   ....... PROTESIS DENTAL Y SOBRE IMPLANTES .......  "
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()