<!--
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]="    Vales De Descuentos.com.ar   "
typ[1]="    Papeleles Tapiz y Wallpapers para tu Escritorio  "
typ[2]="     Recetas de Cocina :-)  "
typ[3]="    Visitaste ya la seccion de PPS Archivos power Point........"
typ[4]="    Si te gusta esta pagina y queres que siga funcionando  "
typ[5]="    Visita los CUPONES DE DESCUENTOS :-)  "
typ[6]="    Te sirven a vos y a nosotros "
typ[7]="    Hace clic en la Torta Infantil y la Caja de Bombones vale la pena!!!!! :-)  "
typ[8]="    Lunch para 10 personas con torta กกก$70!!!Guau.. "
typ[9]="    Enviale bombones a tu pareja. Este es el momento ;-)    "
typ[10]="    La mejor seccion Ilusiones Opticas y Cosas Divertidas    "
typ[11]="    Estan buenas las Curiosidades y los Chistes   "
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()