a = "Right-clicking is disabled throughout the gallery.";
bV = parseInt(navigator.appVersion)
bN = navigator.appName=="Netscape"
bI = navigator.appName=="Microsoft Internet Explorer"
function nrc(e) {
   if (bN && e.which > 1){
      alert(a)
      return false
   } else if (bI && (event.button >1)) {
     alert(a)
     return false;
   }
}

document.onmousedown = nrc;
if (document.layers) window.captureEvents(Event.MOUSEdown);
if (bN && bV<5) window.onmousedown = nrc;

function bookmark(url, description) {
   netscape="Netscape User's hit CTRL+D to add a bookmark to this site."
   if (navigator.appName=='Microsoft Internet Explorer') {
      window.external.AddFavorite(url, description);
   } else if (navigator.appName=='Netscape') {
      alert(netscape);
   }
}

function printpage() {
   print();
   window.close();
   return false;
}
