function VerifFiche(monId,racine){
	
	monUl=document.getElementById('contenu_liste');
	var monLi = monUl.getElementsByTagName("li");
	var liTaille=monLi.length;
	var oki=0;
	for (var i = 0; i < liTaille; i++) { 
		//verification si info
		if(monLi[i].id.indexOf('lifiche_contenu')!=-1){
			li_maj=document.getElementById(monLi[i].id);
			//recuperation de l'identifiant de contenu
			var id_contenu=monLi[i].id.substr(monLi[i].id.lastIndexOf("_")+1,monLi[i].id.length);
			li_maj_id=monLi[i].id;
			oki=1;
			break;
		}
	}
	if(oki==1){
		if(window.XMLHttpRequest){
			 xhr_object_modification_fiche= new XMLHttpRequest();
		}else if(window.ActiveXObject){
			 xhr_object_modification_fiche = new ActiveXObject("Microsoft.XMLHTTP");
		}else{
			 return(false);
		}
		 monLoad(li_maj_id);
		var fichier=racine+"commun/utilisateurs/fiche.php?id_contenu="+id_contenu+"&racine="+racine+"&id_utilisateur="+monId+"&crea=1";
		xhr_object_modification_fiche.open("GET", fichier, true);
		xhr_object_modification_fiche.setRequestHeader("Content-type", "application/x-www-form-urlencoded; charset=iso-8859-1");
		xhr_object_modification_fiche.send(null);
		
		xhr_object_modification_fiche.onreadystatechange  = function(){
			if(xhr_object_modification_fiche.readyState == 4){
				li_maj.innerHTML=xhr_object_modification_fiche.responseText;
			}
		}
	}else{
		alert("Ajouter la fenêtre de gestion des fiches");
	}
}
