<!--
// please keep these lines on when you copy the source
// made by: Nicolas - http://www.javascript-page.com

var mymessage = "This page contains copyright material.\n\nMost of the material on these pages is available in published books and video tapes.\n\nCheck with your archery equipment dealer for availability. ";

function rtclickcheck(keyp){

  if (navigator.appName == "Netscape" && keyp.which == 3) {
    alert(mymessage);
    return false;
  }


  if (navigator.appVersion.indexOf("MSIE") != -1 && event.button == 2) { 
    alert(mymessage);
    return false;
  }
}

document.onmousedown = rtclickcheck
//-->
