function click(e) {
     var message="All content (including but not limited to text and images) on this website copyright " + String.fromCharCode(169) + " Hawaii Whale Research Foundation.  All rights reserved worldwide.  All use subject to U.S. National Marine Fisheries Service scientific permit restrictions.  International copyright protections apply worldwide.  Please contact us to arrange a licensing agreement if you wish to use one of our images.    www.hwrf.org.    Thank you.";
  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;

