<!--
var msg = "Copyrighted material, send email to the webmaster for permission to copy.";
var ns4 = (document.layers)?true:false;
var ie4 = (document.all)?true:false;
if (ns4) {
  window.captureEvents(Event.MOUSEDOWN);
}
function no_rclick(e) {
  r_btn = false;
  if (ns4) { r_btn = ( e.which == 2 || e.which == 3)?true:false }
  if (ie4) { r_btn = (event.button == 2 || event.button == 3)?true:false }

  if (r_btn) {
    alert(msg);
    return false;
  }
}
window.onmousedown=no_rclick;
document.onmousedown=no_rclick;
// -->