//Funcao para desabilitar right click


var message="www.visanet.com.br";

function clickIE4(){
    if (event.button==2){
        alert(message);
        return false;
    }
}

function clickNS4(e){
    if (document.layers||document.getElementById&&!document.all){
        if (e.which==2||e.which==3){
            alert(message);
            return false;
        }
    }
}

if (document.layers){
    document.captureEvents(Event.MOUSEDOWN);
    document.onmousedown=clickNS4;
}
else if (document.all&&!document.getElementById){
    document.onmousedown=clickIE4;
}

document.oncontextmenu=new Function("alert(message);return false")


//Hide status bar msg II script- by javascriptkit.com
//Visit JavaScript Kit (http://javascriptkit.com) for script
//Credit must stay intact for use

function hidestatus(){
//window.status="Com a VisaNet Brasil você sempre ganha!"
return true
}

if (document.layers)
document.captureEvents(Event.MOUSEOVER | Event.MOUSEOUT)

document.onmouseover=hidestatus
document.onmouseout=hidestatus

  //var hellotext = "Com a VisaNet Brasil você sempre ganha!"
  var hellotext = ""
  var thetext = "";
  var started = false;
  var step = 0;
  var times = 1;

  
    //window.status = 'asdasdsa';
    //window.defaultstatus="Com a VisaNet Brasil você sempre ganha!";
    //window.onMouseMove="Com a VisaNet Brasil você sempre ganha!";
    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);

      }
          
          
     function welcometext() {
              times--;
              if (!times) {
                      if (!started) {
                              started = true;
                              window.status = hellotext;
                              setTimeout("anim()", 1);
                      }
                      thetext = hellotext;
         }
      }

    welcometext();
