	
	/***************************************************************************/
	/***************************************************************************/
	/*
	*
	* GET = "page_choisie=PAGE"
	*/
	function XML_display_utilisateur_du_groupe(x,y,xmlhttp,GET)
	{
		var recherche_texte;
		recherche_texte="";
		
		//*********************************************//
		// Récupération de la page choisie dans le GET
		//*********************************************//
		GET_parametres = GET.split("&");
		GET_nb_parametres = GET_parametres.length;
		
		for(var i=0; i<GET_nb_parametres;i++)
		{
			GET_parametres_details =GET_parametres[i].split("=");
			if(GET_parametres_details[0]=="id_groupe")
				id_groupe=GET_parametres_details[1];
		}
		
		//*********************************************//
		//*********************************************//
		reponse = xmlhttp.responseXML.documentElement;
		
		groupe_nom=reponse.getElementsByTagName("GROUPE_NOM")[0].firstChild.nodeValue;
		groupe_couleur=reponse.getElementsByTagName("GROUPE_COULEUR")[0].firstChild.nodeValue;
		
		var text_final = "<DIV style='font-weight:normal;'>";
			text_final += "<IMG SRC='images/fermer.gif' style='float:right; margin-right:5px;'  onClick='killlink();'>";
			text_final += "<IMG SRC='images/details.gif' style='float:left; margin-right:5px;'>";
			//text_final += "<i>"+groupe_nom+"</i> : ";
		
			text_final +="<ul style='margin-top:0px; margin-bottom:2px;'>";
			for(var i=0; i< reponse.getElementsByTagName("ID_UTILISATEUR").length; i++)
			{
				text_final += "<li>";
				text_final += reponse.getElementsByTagName("PRENOM")[i].firstChild.nodeValue;
				text_final += " ";
				text_final += reponse.getElementsByTagName("NOM")[i].firstChild.nodeValue;
				
				//+reponse.getElementsByTagName("ID_UTILISATEUR")[i].firstChild.nodeValue+".</li>";
			}
			text_final +="</ul>";
			
		text_final += "</DIV>";

		FLAG_poplink_bloque=0;
		poplink(x,y,groupe_nom,text_final,15,5,"images/interrogation.png");
    }
    //end function XML_display1(x,y,xmlhttp,page_choisie)
