function noRightClick() {
if (event.button==2) {
alert('Right clicking is not permitted on this page..')
}
}
document.onmousedown=noRightClick
