<!-- Disable
	
document.onselectstart=new Function("return false")
document.oncontextmenu=new Function("return false")
document.ondragstart =new Function("return false")

function disableselect(e){return false} 
function reEnable(){return true} 
 
//Si IE4 et sup&eacute;rieur 
document.onselectstart=new Function ("return false")
document.oncontextmenu=new Function ("return false")
	
//Si NS6 
if (window.sidebar){
	document.onmousedown=disableselect
	document.onclick=reEnable
}
//--> 
