/* No right button on mouse */

function click(){
     if(event.button==2){                 
                     
     alert("Spiacente, il tasto destro del mouse è disabilitato - Sorry, no right-click!")
                   }
          }
document.onmousedown=click

