function copyright(e){
	if (document.layers){
		if ((e.keyCode==93) || (e.which == 3) || (e.wich==2)){
			alert('Tutti i diritti riservati.\nA S T R A L M U S I C');
		}
	}else{
		
		var msg = 'Tutti i diritti riservati.\nA S T R A L M U S I C';
		if (window.event){
			if ((window.event.keyCode == 93) || (window.event.button == 2))
				alert(msg);
		}else{
			if (e.keyCode)
				if (e.keyCode == 93)
					alert(msg);
			if (e.button)
				if (e.button == 2)
					alert(msg);
		}
	}

}
if (document.layers){
	document.captureEvents(Event.MOUSEDOWN);
	document.captureEvents(Event.KEYDOWN);
}


document.onmousedown = copyright
document.onkeydown = copyright