// JavaScript Document for no right click
function noRightClick() {
  if (event.button==2) {
    alert('Sorry!  Contact webmaster for information')
  }
}
document.onmousedown=noRightClick

// End of script
