//-- Interdire la sélection d'un texte dans la page
function selection(e)
	{ return false; }
function clic()
	{ return true; } 
	document.onselectstart=new Function ("return false");
	if (window.sidebar) {
		document.onmousedown=selection;
		document.onclick=clic; }
// EOF