/*
Disable right mouse click Script (By Crash @ http://walk.to/crash)
Submitted to and permission granted to Dynamicdrive.com to feature script in it's archive
For full source code to this script and 100's more, visit
http://dynamicdrive.com
*/

var message="Questo sito è protetto da copyright.\nwww.SicurezzaPersonale.Net  © 2006 - 2010.\nTutti i diritti riservati.\n\nGli scritti e il materiale contenuti in questo sito possono\nessere liberamente utilizzati per fini non commerciali,\nindicando la fonte.";

function stop_event(e)
{
	return false;
}

function click(e) 
{
	if (document.all) 
	{
		if (event.button==2||event.button==3) 
		{
			alert(message);
			return false;
		}
	}
	
	if (document.layers) 
	{
		if (e.which == 3) 
		{
			alert(message);
			return false;
		}
	}
}

if (document.layers) 
{
	document.captureEvents(Event.MOUSEDOWN);
}
	
document.onmousedown=click;
document.oncontextmenu=stop_event;
document.ondragstart=stop_event;
document.onselectstart=stop_event;
