
  function block(oEvent){
   if(window.event)
    oEvent=window.event;
   if(oEvent.button==2)
    alert("The right mouse button is not available");
  }
  document.onmousedown=block;
