<!--
function myNoMenu(){
  event.cancelBubble = true
  event.returnValue = false;
  return false;
}
function myEventN6(myEvent){
   if(myEvent.button == 2){
   }
}
function myEventIE(){
   if(event.button == 2){
      myNoMenu();
   }
}
function myEventNN(myEvent){
   if(myEvent.which == 3){
      return false;
   }
}
if(document.getElementById){
   if (window.addEventListener){
      window.addEventListener("mousedown",myEventN6,true);
   }
}
if(document.all){
   document.oncontextmenu = myNoMenu;
   document.onmousedown = myEventIE ;
}
if(document.layers){
   document.captureEvents(Event.MOUSEDOWN);
   document.onmousedown = myEventNN ;
}
//-->
