function right(e) {
if (navigator.appName == 'Netscape' && 
(e.which == 3 || e.which == 2)) {
alert("Sorry, that function is disabled. The photographs and other content of this web page belong to David Farber.  Please use the order page to purchase photographs or contact David Farber at RaptorFoto@sbcglobal.net to request permission for other uses.");
return false;}
else if (navigator.appName == 'Microsoft Internet Explorer' &&
(event.button == 2 || event.button == 3)) {
alert("Sorry, that function is disabled. The photographs and other content of this web page belong to David Farber.  Please use the order page to purchase photographs or contact David Farber at RaptorFoto@sbcglobal.net to request permission for other uses.");
return false;}
return true;}
document.onmousedown=right;
if (document.layers) window.captureEvents(Event.MOUSEDOWN);
window.onmousedown=right;

