<!-- 
document.oncontextmenu = no_no; 

function clik(e) {
if (document.layers) {
if (e.which == 3 || e.which == 2) {
alert("Spiacente, il tasto destro del mouse \è disabilitato !");
return false;
}
return true;
}
}
if (document.layers) {
document.captureEvents(Event.MOUSEDOWN);
}
document.onmousedown=clik;
function no_no() 
{ 
alert("Spiacente, il tasto destro del mouse \è disabilitato !");
return false; 
} 


// -->
 
 
