<!--
function no_right_click() 
{
 if (event.button==2) 
  {
  alert('Sorry, No right click!');
  }
}
document.onmousedown=no_right_click;
// End -->