function noRightClick() {
if (event.button==2) {
alert('Please do not right mouse click this page.')
}
}
document.onmousedown=noRightClick
