var current = 0
var x = 0
var speed = 100
var speed2 = 3000

function initArray(n) {
  this.length = n;
  for (var i =1; i <= n; i++) {
    this[i] = ' '
  }
}

typ = new initArray(5)
typ[0]="musioon.com.mx - Aprovecha de las promciones que MU-SIOON II reloaded trae para ti.."
typ[1]="Servidor MU-SIOON les da la bienvenida =) "
typ[2]="Disfrute jugando con nuestra Server1,Server2 97+99 y Server-S3 muy pronto mas actualizaciones estamos trabajando..."
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()
//-->

<!--
function popUp(URL) {
day = new Date();
id = day.getTime();
eval("page" + id + " = window.open(URL, '" + id + "', 'toolbar=0,scrollbars=0,location=0,statusbar=0,menubar=0,resizable=0,width=280,height=210,left = 357.5,top = 230');");
}
//-->

