

//right click disable			
var message="Sorry, that function is disabled.\n\nPhotos and information on this site are intended strictly for educational and research purposes."; 

function click(e) 
	{
	if (document.all) 
		{
		if (event.button == 2) 
			{
			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;
	

