statustext = '.: ROCOSA :.';
var wordlength = 0;
var msg;
var TimeI;
var TimeII;

function Incrementwordlength() 
{
    if (wordlength < statustext.length+1) 
    { 
	    wordlength++;
	    TimeI = setTimeout("Incrementwordlength()", 100) 
    }
}

function PutWord() 
{
    if (wordlength < statustext.length+1) 
    {
	    msg = statustext.substring(0, wordlength)
	    window.status = msg
	    setTimeout("PutWord()", 100)
    }
}
function BreackMsg(brk) 
{
    if (!brk)
    {
    	Incrementwordlength();
    	PutWord();
    }
    else
    {
        clearTimeout(TimeI);
        clearTimeout(TimeII);    
        wordlength = 0;
    }
}
BreackMsg(false);
