function blockError(){return true;}
 window.onerror = blockError;

function disableselect(e)
 {
    return false
 }
function reEnable()
 {
    return true
 }
 //if IE4+
 document.onselectstart=new Function ("return false")
 //if NS6
 if (window.sidebar)
 {
    document.onmousedown=disableselect
    document.onclick=reEnable
 }

var notoca="L i n u G o x    -    I D E N T I D A D E    V I S U A L\n- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -\n\nOBRIGADO POR VISITAR NOSSO SITE !!\n\nCopyright 1994 - 2009 By Hugo E. Gastesi\n\nContato: linugox@gmail.com\n";
function click(mouse) {
  if (document.all) {
     if (event.button==2||event.button==3) {
        alert(notoca);
        return false;
     }
  }
  if (document.layers) {
     if (mouse.which == 3) {
        alert(notoca);
        return false;
     }
  }
}


if (document.layers) {
   document.captureEvents(Event.MouseDown);//protege a tecla ALT
   function keypressed(evt) {
       var evt  = (evt) ? evt : ((event) ? event : null);
       if((evt.keyCode == 18) || (evt.keyCode == 115)) {
          alert("Desenhado por:\nHugo Enrique Gastesi");
       }
   }
}

document.onmousedown=click;

document.onkeydown=keypressed; 

//-->

