var current = 0
var x = 0
var speed = 70
var speed2 = 3500
function initArray(n) {
  this.length = n;
  for (var i =1; i <= n; i++) {
    this[i] = ' '
 }
}
typ = new initArray(5)
typ[0]="ASTECH - Dirección: Jr. Monsefú N° 960 - Cercado de Lima (Altura Cdra. 15 Av. Colonial), Lima - Perú "
typ[1]="Teléfonos: (511) 7198268 / (511) 7198269 / (511) 7198270   Telefax: (511) 3368118 "
typ[2]="E-mail: amontano@astech.com.pe, finanzas@astech.com.pe, logistica@astech.com.pe, webmaster@astech.com.pe "
typ[3]="ASTECH....Soluciones para su empresa"
typ[4]=""

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()