

function non(clic) {
var msg="ATTENZIONE! \nTutto il materiale contenuto in questo sito è protetto dal diritto d'autore. Qualsiasi riproduzione, anche parziale, è vietata e sarà perseguita a termini di legge.";
if (navigator.appName == 'Netscape' && clic.which==3) {
alert(msg);
return false;}
else
if (navigator.appName == 'Microsoft Internet Explorer' && event.button==2) {
alert(msg);
return false;
}
return true;
}
document.onmousedown = non;

