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


//  ---------------------------------
//----->  Click Souris
function rtclickcheck() {
	var now = new Date();
	var mymessage = "Action refusée !\n© GUIDARTS " + now.getFullYear();
		  
    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;


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