<!-- Disable

var UserAgentString = navigator.userAgent.toLowerCase();
var detect = UserAgentString.indexOf('firefox') + 1;

function disableselect(e){
	return false
	}

function reEnable(){
	return true
	}

if ( detect == 0 ) {
	// IE
	document.onselectstart=new Function ("return false")
	document.oncontextmenu=new Function ("return false")
	// Autres navigateurs
	if (window.sidebar){
		document.onmousedown=disableselect
		document.onclick=reEnable
		}
	}
	
//-->
