function msgStat(seed,looped)
{ var msg = "Associação PODE - Portadores de Direitos Especiais";
var putout = " ";
var c = 1; 
if (looped > 2) 
{ window.status="<<<< Associação PODE - Portadores de Direitos Especiais >>>>"; }
else if (seed > 100) {
seed--;
var cmd="msgStat(" + seed + "," + looped + ")";
timerTwo=window.setTimeout(cmd,100);
}
else if (seed <= 100 && seed > 0) {
for (c=0 ; c < seed ; c++) 
{ putout+=" "; }
putout+=msg.substring(0,100-seed); 
seed--;
var cmd="msgStat(" + seed + "," + looped + ")";
window.status=putout;
timerTwo=window.setTimeout(cmd,100);
}
else if (seed <= 0) 
{
if (-seed < msg.length) 
{
putout+=msg.substring(-seed,msg.length);
seed--;
var cmd="msgStat(" + seed + "," + looped + ")";
window.status=putout;
timerTwo=window.setTimeout(cmd,100); // 100
}
else 
{
window.status=" ";
looped += 1;
var cmd = "msgStat(100," + looped + ")";
timerTwo=window.setTimeout(cmd,75); // 75
}
}
}
msgStat(100,1)