function noRightClick() {
if (event.button==2) {
alert('The Right-Click function has been disabled on this page.')
}
}
document.onmousedown=noRightClick
