function noRightClick(evnt) {
errMsg="Please respect our copyright.  Contact AHN for permission to use our information."
if (navigator.appName.toUpperCase().match(/NETSCAPE/) != null) {
if (evnt.which == 3){alert(errMsg);return false;}}else
if (event.button==2)alert(errMsg);}
document.onmousedown=noRightClick;
