// JavaScript Document

//*****************************************************************************************************************
// DISABILITA' L'UTILIZZO DEL TASTO DESTRO DEL MOUSE
//*****************************************************************************************************************
var messaggio = "Questa operazione non è consentita";

function DisabilitaIE4()
{
	if (event.button == 2)
	{
		alert(messaggio);
		return false;
	}
}

function DisabilitaNS4(e)
{
	if (document.layers || document.getElementById && !document.all)
	{
		if (e.which == 2 || e.which == 3) 
		{
			alert(messaggio);
			return false;
		}
	}
}

document.onload = function () 
{
	if (document.layers)
	{
		document.captureEvents(Event.MOUSEDOWN);
		document.onmousedown = DisabilitaNS4;
	}
	else if (document.all && !document.getElementById)
	{
		document.onmousedown = DisabilitaIE4;
	}
}

document.oncontextmenu = function () 
{ 
	alert(messaggio);
	return false;
}
//*****************************************************************************************************************