tempo = 50;
chars = 0;
texto = "-- Bem vindo,  Melhor Visualizado no Internet Explorer 6.0 ou Superior --";
wtexto = new Array(200);
wtexto[0] =""
b=" ";
for (j = 120; j > 0; j--) {
b=b+" ";
wtexto[j] = b+texto;
}
b=" ";i=0;
for (j = 121; j < 251; j++) {
wtexto[j] = texto.substring(i++, texto.length);;
}
function animastatus() {

//if (chars > -1) str = wtexto[chars]; 
//else str = wtexto[0];

str = wtexto[chars];

if (chars++ > 249) chars = 0;

if (chars == 120) {
clearTimeout(tempo);
tempo = setTimeout("animastatus()", 10000);

} else if (chars == 0){
clearTimeout(tempo);
tempo = setTimeout("animastatus()", 1000);
} else {
clearTimeout(tempo);
tempo = setTimeout("animastatus()", 50);
}

status = str;
}
animastatus()

