
<!--Javascript which prevents any right click action on the page-->
function noRightClick() {
if (event.button==2) {
alert('No Right click actions allowed.')
}
}
document.onmousedown=noRightClick
