function right(e) {
  var msg = "Copyright Notice: All images contained on this website remain the property of Charles Twist.  Images may not be downloaded, reproduced, copied, projected, or used in any way without express written permission.";
  if (navigator.appName == 'Netscape' && e.which == 3) {
    alert(msg);
    return false;
  }
  if (navigator.appName == 'Microsoft Internet Explorer' && event.button==2) {
    alert(msg);
    return false;
  }
  else return true;
}

//document.body.addEventListener("contextmenu",killClick, true);

function trap()   {
  if(document.images)  {
    for(i=0;i<document.images.length;i++)      {
      document.images[i].onmousedown = right;
      document.images[i].onmouseup = right;
    }
  }

}

// End -->
