/*******************************************************
*  Original JavaScript by Kipp B. Smith © 1999 (6EQUJ5)
*   <http://www.kipp.smith.net/>  <kipp@smith.net>
* License is granted if entire original credits remain.
* Please contact author regarding use of this code. ;)
********************************************************/

// (Rightclick:) This section disables right click in MSIE and Netscape

function right(evnt) {
  if (navigator.appName.toUpperCase().match(/NETSCAPE/) != null) {
    if (evnt.which >= 2){
      alert("(c) 2004-2005 SWR, Tous droits réservés / All Rights Reserved");
      return false;
    }
  }

  else
    if (event.button>=2)
      alert("(c) 2004-2005 SWR, Tous droits réservés / All Rights Reserved");
}

document.onmousedown=right;
if (document.layers) window.captureEvents(Event.MOUSEDOWN);
window.onmousedown=right;

// (Resize:) End rightclick disable section
