// document.oncontextmenu = nocontextmenu;
/*
document.onmousedown = norightclick;

if (window.Event){
  	document.captureEvents(Event.MOUSEUP);
}

function norightclick(e){ 
	var msg = "E' vietata la riproduzione anche parziale di contenuti e grafica. \nTutti gli altri marchi sono proprietà delle rispettive aziende.";
	
	
	if (window.Event){ 
		if (e.which == 2 || e.which == 3){ 
			alert(msg);
			return false;
		}
  	} else { 
  		if (event.button == 2 || event.button == 3){ 
  			alert(msg);
  			event.cancelBubble = true;
  			event.returnValue = false;
      			return false;
    		}
  	}
}

*/