function jeandaclick()
	{
	alert('Copyright © 2008 Jean-Daniel Borgeaud. All Rights Reserved.');
	}
function noclick(scx)
	{
	if (navigator.appName == "Netscape" && scx.which == 3)
		{
		jeandaclick();
		return false; 
		}
if (navigator.appVersion.indexOf("MSIE") != -1 && event.button == 2)
		{
		jeandaclick();
		return false; 
		}
	} 
	document.onmousedown = noclick 							  

	document.oncontextmenu= new Function("return false"); 
	document.onselectstart=new Function ("return false");  
	document.onmousemove =new Function ("return false");
	

	