// JavaScript Document
 
function right(e){
	if (navigator.appName == 'Netscape' && (e.which == 3 || e.which == 2)){
		alert("Please Note: These images are copyrighted by the photographer and cannot be downloaded."); 
		return false;
	}else if (navigator.appName == 'Microsoft Internet Explorer' && (event.button == 2 || event.button == 3)){
		alert("Please Note: These images are copyrighted by the photographer and cannot be downloaded.");
		return false;
	}
	return true;
}

if (document.layers) {
document.captureEvents(Event.MOUSEDOWN);
document.onmousedown=right;
}else{
document.onmouseup=right;
}

document.oncontextmenu=new Function("return false"); 
