<!-- This script and many more are available free online at -->
<!-- The JavaScript Source!! http://javascript.internet.com -->
<!-- Begin
function right(e)
{ 
	var msg = "Immagine protetta da copyright - L' utilizzo non autorizzato sarà perseguito per legge";
if (navigator.appName == 'Netscape' && e.which == 3)
{
	alert(msg); return false;
}
else if (navigator.appName == 'Microsoft Internet Explorer' && event.button==2)
	{
		alert(msg); return false;
	} 
	return true;
}
document.onmousedown = right; // End --> 
