function myEventN6(myEvent){  // NN6のクリック時
   if(myEvent.button == 2){   //   右クリックか?
      alert("右クリックは禁止です！");
   }
}
function myEventIE(){         // IEのクリック時
   if(event.button == 2){     //   右クリックか?
      alert("右クリックは禁止です");
   }
}
function myEventNN(myEvent){  // NN4のクリック時
   if(myEvent.which == 3){    //   右クリックか?
      alert("右クリックは禁止です");
      return false;
   }
}

if(document.getElementById){     // DOM lv2 ?
   if (window.addEventListener){ // NN6?
      window.addEventListener("mousedown",myEventN6,true);
   }
}
if(document.all){      // IE4?
   document.onmousedown = myEventIE ;
}
if(document.layers){   // NN4?
   document.captureEvents(Event.MOUSEDOWN);
   document.onmousedown = myEventNN ;
   document.captureEvents(Event.KEYPRESS);
}
