// JavaScript Document



<!-- Begin
function right(e) {
var msg = "Right clicking on images on this website is disabled.\n\nIf you are right clicking on an image\nfor the purpose of opening a link in a new window\nplease NOTE that all images will open a new window when left clicked.";
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;
}

function trap() 
  {
  if(document.images)
    {
    for(i=0;i<document.images.length;i++)
      {
      document.images[i].onmousedown = right;
      document.images[i].onmouseup = right;
      }
    }
  }



	// End -->
