window.document.onkeydown=onKeyDown;
if (document.all || document.getElementById)
{
  document.onmousedown = RightClick;
}
else if(document.layers)
{
  window.captureEvents(Event.MOUSEDOWN);
  window.onmousedown = RightClick;
}

function RightClick(e)
{
  if (document.all || document.getElementById)
  {
    if(event.button & 2)
    {
      alert("右クリックは許可していません。");
      return false;
    }
  }
  else if(document.layers)
  {
    if(e.which == 3)
    {
      alert("右クリックは許可していません。");
      return false;
    }
  }
  else
  {
    return true;
  }
}
function onKeyDown(e)
{
  if (navigator.appName == "Microsoft Internet Explorer")
  {
    if (event.keyCode == 93)
    {
      alert("押下したボタンはこのページでは許可していません。");
      return false;
    }
  }
}

