
<!-- //Hide script from older browsers 
var msg = "Down loading images from the Brighton Athletic web site is strictly prohibited. If you would like to purchase any photo or image from this web site contact the Athletic Department. Thank You!"; 
 
if (navigator.userAgent.indexOf("Netscape") != -1) { 
  document.captureEvents(Event.MOUSEDOWN); 
} 
 
document.onmousedown = trapClick; 
 
function trapClick(ev) { 
  if (document.all) { 
    if (event.button == 2) { 
      alert(msg); 
      return false; 
    } 
   } 
   if (navigator.userAgent.indexOf("Netscape") != -1) { 
    if (ev.which == 3) { 
      alert(msg); 
      return false; 
    } 
  } 
} 
 
//--> 
