// JavaScript Document

function noRightClick() {
if (event.button==2) {
alert('You may not right click on this page!')
}
}
document.onmousedown=noRightClick