
  // Visualiza un texto en forma de scroll en la barra de Estado
  strTexto = "          CASINODEJUEGO.net            ";
  lngIntervalo = 200
  intLongTexto = 30
  
  status = strTexto;
  function scroll_texto() {
    
    strTexto = strTexto.substring(1,status.length) + strTexto.substring(0,1);
    
    status = strTexto.substring(0,intLongTexto);

    setTimeout("scroll_texto()",lngIntervalo);

  }


