<!--
var exit = 1;

function popup1(variables) {
  if ( exit == 1 ) {
    window.open('/popup1.php?' + variables + '','','toolbar=0,location=0,directories=0,status=0,scrollbars=0,resizable=0,copyhistory=0,menuBar=0,width=500,height=293');
  }
}

var thetext = "";
var started = false;
var step = 0;
var times = 1;

function welcometext(hellotext) {
  times--;
  if (!times) {
    if (!started) {
      started = true;
      window.status = hellotext;
      setTimeout("anim()", 1);
    }
    thetext = hellotext;
  }
}

function anim() {
  step++;
  if (step==7) step = 1;
  if (step==1) window.status = '....: ' + thetext + ' :....';
  if (step==2) window.status = '...:: ' + thetext + ' ::...';
  if (step==3) window.status = '..::. ' + thetext + ' .::..';
  if (step==4) window.status = '.::.. ' + thetext + ' ..::.';
  if (step==5) window.status = '::... ' + thetext + ' ...::';
  if (step==6) window.status = ':.... ' + thetext + ' ....:'
  setTimeout("anim()", 200);
}
//-->
