    var spravatext=" registrácia domény, webmaster, design & webhosting - www.poruban.sk (c) 2003 "
    var thetext=""
    var started=false
    var step=0
    var times=1
    function sprava_domeny()
    {
      times--
      if (times==0)
      {
        if (started==false)
        {
          started = true;
          window.status = spravatext;
          setTimeout("anim()",1);
        }
        thetext = spravatext;
      }
    }
    function showstatustext(txt)
    {
      thetext = txt;
      setTimeout("sprava_domeny()",4000)
      times++
    }
    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);
    }
