

function noRightClick()
{
if(event.button==2)
{
alert('Sorry, no right click allowed.')
}
}
document.onmousedown=noRightClick


