function no_right_click() 
{
 if (event.button==2) 
   window.alert('Ha, ha, ha! No right click!');
}
document.onmousedown=no_right_click;

