/*                                                                 */
/*             Bibliothèque Javascript Guidarts.com                */
/*                                                                 */


//  ---------------------------------
//  Click Souris
 function rtclickcheck() {
          var mymessage = "Action refusée !\n© GUIDARTS 2009";
          if (navigator.appName == "Netscape" && keyp.which == 3)              { alert(mymessage); return false; }
          if (navigator.appVersion.indexOf("MSIE") != -1 && event.button == 2) { alert(mymessage); return false; }
          return true;
      }

   document.onmousedown = rtclickcheck;


//  ---------------------------------
