///// Fonctions permettant d'interdire le click droit
// Appel :
//<SCRIPT LANGUAGE="JavaScript">
//document.onmousedown = noclick
//</SCRIPT>
<!--hide this script from non-javascript-enabled browsers
function yaunclick()
	{
	alert('Click droit interdit sur cette page.');
	}
function noclick(scx)
	{
	if (navigator.appName == "Netscape" && scx.which == 3)
		{
		yaunclick();
		return false; 
		}
if (navigator.appVersion.indexOf("MSIE") != -1 && event.button == 2)
		{
		yaunclick();
		return false; 
		}
	}
// stop hiding -->