var msg = "Copyright © 1998-2009 Mauro Luis Devin Campagnoli.\nLa riproduzione di testi, immagini,video, musica e suoni è proibita.\nPer maggiori informazioni, leggere la nota sul copyright:\nMenu principale > About > Info sul sito e copyright"
if (navigator.appName=="Microsoft Internet Explorer"){
	function NOclickIE(e) {
		if (event.button == 2 || event.button == 3) { alert(msg); return false }
		return true;
	}
	document.onmousedown=NOclickIE; document.onmouseup=NOclickIE; window.onmousedown=NOclickIE; window.onmouseup=NOclickIE
}
else {
	function NOclickNN(e){
		if (document.layers||document.getElementById&&!document.all){
			if (e.which==2||e.which==3){ alert(msg); return false }
		}
	}
	if (document.layers){
		document.captureEvents(Event.MOUSEDOWN); document.onmousedown=NOclickNN
	}
	document.oncontextmenu=new Function("alert(msg);return false")
}