document.onmousedown=disableclick;
function disableclick(e)
{
  if(event.button==2)
   {
     alert('Sorry Right Click has been disabled!');
     return false;	
   }
}