<!-- Begin

function right(e) {
  var msg = "Page content and graphics protected by copyright. To Add to your Favorites, right click somewhere on the page that does not have an image.";
  if ((navigator.appName == 'Netscape' && e.which == 3) || (navigator.appName == 'Microsoft Internet Explorer' && event.button==2)) {
    alert(msg);
    return false;
  }
  return true;
}

function trapclick() {
  if(document.images) {
    for(i=0;i<document.images.length;i++) {
      document.images[i].onmousedown = right;
      document.images[i].onmouseup = right;
    }
  }
}

//  End -->
