<!--
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(11)
typ[0]=" •••   ***   Desarrollo de Sistemas a Medida   ***  "
typ[1]=" •••  ****    Sistemas Contables - Sistemas de Facturacion    ****"
typ[2]=" •••    ** Software de Control de Acceso - Software de Presentismo **  "
typ[3]=" •••   ********     Control de Stock de Mercaderias    ********"
typ[4]=" •••     ****  Softwares a Medida - Programas a Medida  ****  "
typ[5]=" •••   ***   Desarrollo de Programas a Medida   ***   "
typ[6]=" •••   ***   Programas Contables - Programas para Contabilidad   *** "
typ[7]=" •••   ****    Control de Acceso - Control de Gestion    ****  "
typ[8]=" •••   ** Facturacion para Empresas - Facturacion para Industrias ** "
typ[9]=" •••   *****     Sistemas Contables - Sistemas de Contabilidad  ***** "
typ[10]=" •••     ****   Softwares para Industrias - Softwares para Empresas   ****  "
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()
