var message="Copyright 2003..\n\nWARNING ! ";
message += "All content contained on this page is protected by copyright laws. \n";
message += "Unauthorized use of material is strictly prohibited. \n\n";
message += "is held either by Olympia Moments, the photographer or the \n";
message += "individual(s) featured. Contact Maxxx for details if required.";


function  nmcs_right_click() { 
if ((event.button==2) || (event.button==3)) { 
alert(message); 
} 
} 
document.onmousedown=nmcs_right_click 

if (navigator.appName == "Netscape") { 
document.captureEvents(Event.MOUSEDOWN) 
document.onmousedown = nmcs_checkClick 
function nmcs_checkClick(ev) { 
if (ev.which != 1) { 
alert(message)
return false 
} 
} 
} 

function click(e) {
 if (document.all) {
  if (event.button==2||event.button==3) {
   alert(message);
   return false;
  }
 }
 if (document.layers) {
  if (e.which == 3) {
   alert(message);
   return false;
  }
 }
}
if (document.layers) {
document.captureEvents(Event.MOUSEDOWN);
}
document.onmousedown=click;




