 var messaggio='Operazione non consentita su questa pagina !!';
/* 
 function click() {
  if (document.all) {
      if (event.button==2 || event.button==3) {
	      alert(messaggio);
		  returnM;
	  }
  }
  
  if (document.layers) {
      if (e.which==3) {
	      alert(messaggio);
		  return;
	  }
  }
 }
 
 if (document.layers) {
     document.captureEvents(Event.MOUSEDOWN);
 }
  document.onmousedown=click;
*/

 function protect(e) {
//  if (event.button==2 || event.button==3) {
//      alert(messaggio);
//  return false;
//  }
 }

 function noncopia() {
  if(document.images)
     for(i=0;i<document.images.length;i++)
          document.images[i].onmousedown = protect;
 }

