// script para mostrar en barra de estado UPBUSINESS.NET


var hellotext = "UPBUSINESS.NET"
var thetext = "";
var started = false;
var step = 0;
var times = 1;

function welcometext() {
times--;
if (!times) {
if (!started) {
started = true;
window.status = hellotext;
setTimeout("anim()", 1);
//window.statusbar.visible=false;

}
thetext = hellotext;
   }
}

function anim() {
step++;
if (step==2) step = 1;
if (step==1) window.status = '   ' + thetext + '   ';
setTimeout("anim()",1);
}


