<!-- Begin
function stopthief(ie)
{
var warning = "Copyrighted material, not for reproduction.  Contact Bradley Bleeker (click on "Email' at the left) to request permission to reproduce any image.";
if (navigator.appName == 'Netscape' && ie.which == 3)
 {
 alert(warning);
 return false;
 } else
 {
 if (navigator.appName == 'Microsoft Internet Explorer' && event.button==2)
  {
  alert(warning);
  return false;
  }
 }
return true;
}

document.onmousedown = stopthief;
// End -->

