// untitled2.java

var message="All content--including but not limited to images, source, and text--are copyright 2002 Sport Horse Gallery.  You do not have authorization to access the code or copy the content of this page." 
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;