/* Disable right click (if possible) */

function click(e) { 

	var message="Copying images is not permitted.\n\Copyright spazioCasa";
	
	if (document.all) { 
		if (event.button == 2) { 
			alert(message); 
			return false; 
		} 
	} 
	if (document.layers) { 
		if (e.which == 3) { 
			alert(message); 
			return false; 
		} 
	} 
} 

