/* -----------------------------------------------------------------------------
Cattura l'evento mousedown sul tasto destro del mouse. 
vale anche se premuto prima sinistra poi destra.
----------------------------------------------------------------------------- */
function bloccaTastoDestro() {
	switch (event.type) {
	case "mousedown":
		if (event.button == 2) alert("Le funzioni del tasto destro del mouse sono state disattivate. Copyright 2008 - antoniettabellantuono.it");
		if (event.button == 3) alert("Le funzioni del tasto destro del mouse sono state disattivate. Copyright 2008 - antoniettabellantuono.it");
		break;
	}
}
document.onmousedown = bloccaTastoDestro;

