function right(x) {
     if (navigator.appName == 'Netscape' && (x.which == 3 || x.which == 2))
        {
          alert("Atenção! A cópia desse material é proibida. Lei Federal de Direitos Autorais -Nº 9610 de 19/Março/1998.");
          return false;
        }
else if (navigator.appName == 'Microsoft Internet Explorer' && (event.button == 2 || event.button == 3)) 
        {
          alert("Atenção! A cópia desse material é proibida. Lei Federal de Direitos Autorais -Nº 9610 de 19/Março/1998.");
          return false;
        }
return true;
}
document.onmousedown=right;
if (document.layers) window.captureEvents(Event.MOUSEDOWN);
window.onmousedown=right;