

var cont = 0;
var texto1 = " Bem-vindo ao site De Millus... ";
var texto2 = "  ";
var texto = texto1 + texto2;  // concatena as strings
scroll();                              // chama a funcao de rolagem
function scroll () {
   var minhaString = texto.substring (cont, texto.length) +
                     texto.substring (0, cont);
   window.status = minhaString;
   if (cont < texto.length)
      cont ++;
   else
      cont = 0;
   setTimeout ("scroll()", 333);
   // 450ms e' o tempo minimo para o Netscape 2.0
}

