<!--
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]="    Repuestos Equidiesel s.r.l  "
typ[1]="    Venta de motores nuevos y oportunidades.  "
typ[2]="     Venta de grupos electrσgenos  "
typ[3]="    Venta de repuestos para toda la linea Deutz. "
typ[4]="    Repuestos Equidiesel s.r.l   "
typ[5]="    Reparaciσn de tapas de cilindro.  "
typ[6]="    Atencion exclusiva a casas de repuestos."
typ[7]="    Atencion exclusiva a rectificadoras. "
typ[8]="    Presupuestos sin cargo. "
typ[9]="    Pago por interdepσsito bancario. "
typ[10]="    Desde el exterior pago por Western Union. "
typ[11]="    Envios en el dνa.    "
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()