var msg="Bitte benutzen Sie nur die linke Maustaste!\nDie rechte Maustaste ist funktionslos!\nWir bitten um Ihr Verständnis!";
var bver  = parseFloat(navigator.appVersion);
var bname = navigator.appName.substring(0,8);

function BodyClick(Ereignis){ 
   if (navigator.appName=='Netscape'){
      if (Ereignis.which==3){
         alert(msg);
         return false;
      }
   }
   else if (event.button==2){
      alert(msg);
   }
   return true;
}

function MouseDown(e){
   if (e.which == 3){
      window.alert(msg);
      return false;
   }
}

if ((bname == "Netscape") && (bver >= 4.0)){
   document.captureEvents(Event.MOUSEDOWN);
   document.onmousedown=MouseDown;  
}
else{
   document.onmousedown=BodyClick;
}
