<HTML> <HEAD> <TITLE>Service-Public : page d'accueil de l'annuaire des services de l'administration</TITLE> <META NAME="keywords" CONTENT="SP_NE_PAS_INDEXER, coordonne, service, national, local, responsable"> <META NAME="description" CONTENT="Recherche d'un service ou d'un responsable appartenant  l'administration franaise."> <META HTTP-EQUIV="Content-Type" CONTENT="text/html; charset=iso-8859-1"> <SCRIPT LANGUAGE="JavaScript"> var agent = navigator.userAgent.toLowerCase(); var ver = parseInt(navigator.appVersion); if ((agent.indexOf("mozilla") != -1) && (ver >= 4) && (navigator.appName.indexOf("Netscape") != -1)) document.write('<LINK HREF="css/homen.css" REL="stylesheet" TYPE="text/css">'); else document.write('<LINK HREF="css/homeie.css" REL="stylesheet" TYPE="text/css">');  // Flore Louisin - Aout 2000 - HyperOffice // Fonction qui desaccentue les caractres passs en minuscule au pralable  function remplace_accent(chaine) { 	var len_ch = chaine.length; 	var ind_deb_mot=0; 		 	<!--desaccentuer les lettres courantes--> 	for (ind=0;ind<=len_ch-1;ind++){ 		car_cour=chaine.charAt(ind); 		if ((car_cour=="")|(car_cour=="")|(car_cour=="") |(car_cour=="")) { 			chaine = chaine.substring(0,ind)+"e"+chaine.substring(ind+1,len_ch); 			len_ch = chaine.length; 		} 		if ((car_cour=="")|(car_cour=="")|(car_cour=="")) { 			chaine = chaine.substring(0,ind)+"a"+chaine.substring(ind+1,len_ch); 			len_ch = chaine.length; 		}	 		if ((car_cour=="")|(car_cour=="")) { 			chaine = chaine.substring(0,ind)+"o"+chaine.substring(ind+1,len_ch); 			len_ch = chaine.length; 		} 		if ((car_cour=="")|(car_cour==""))  { 			chaine = chaine.substring(0,ind)+"i"+chaine.substring(ind+1,len_ch); 			len_ch = chaine.length; 		}	 		if ((car_cour=="")|(car_cour=="")|(car_cour==""))  { 			chaine = chaine.substring(0,ind)+"u"+chaine.substring(ind+1,len_ch); 			len_ch = chaine.length; 		}	 		if (car_cour=="") { 			chaine = chaine.substring(0,ind)+"c"+chaine.substring(ind+1,len_ch); 			len_ch = chaine.length; 		}									 	} 	return chaine; }  // Fonction qui remplace les caractres diffrents de A  Z par des blancs function remplace_DifAZ(chaine) { 	var alphabet="ABCDEFGHIJKLMNOPQRSTUVWXYZ1234567890"; 	var len_ch = chaine.length; 	var ind_deb_mot=0; 	var car_cour=""; 	var car_suiv=""; 		 	<!--desaccentuer les lettres courantes--> 	for (ind=0;ind<=len_ch-1;ind++){ 		car_cour=chaine.charAt(ind); 		if (alphabet.indexOf(car_cour,0)<0) { 			chaine = chaine.substring(0,ind)+"/"+chaine.substring(ind+1,len_ch); 			len_ch = chaine.length; 		}											 	} 	return chaine; }  function net_slash(chaine) { 	var len_ch = chaine.length; 	var ind_deb_mot=0; 	var car_cour=""; 	var car_suiv=""; 	var ind=0; 		 	<!--enlever les "/" superflus--> 	for (ind=0;ind<=len_ch-1;ind++){ 		car_cour=chaine.charAt(ind); 		car_suiv=chaine.charAt(ind+1); 		if ((car_cour=="/")&(car_suiv=="/")) { 			chaine = chaine.substring(0,ind)+chaine.substring(ind+1,len_ch); 			ind=ind-1; 			len_ch = chaine.length; 		}														 	} 	<!--pas de "/" en premier caractre--> 	if (chaine.charAt(0)=="/") { 		chaine = chaine.substring(1,len_ch); 	} 	len_ch = chaine.length; 	<!--pas de "/" en dernier caractre--> 	if (chaine.charAt(len_ch-1)=="/") { 		chaine = chaine.substring(0,len_ch-1); 	}	 	return chaine; }  //constitution d'un filtre de type (&(attribut=mot1)(attribut=mot2)..(attribut=motn)) function creation_filtre_et(filtre,attribut_filtre,nom_saisie,len_ch,ind_deb_mot) { 	if (filtre!="") { 		<!--si le dernier caractre est un blanc alors tous les mots ont t chargs, sinon il faut concatner le dernier mot--> 		filtre = "(&"+filtre+attribut_filtre+nom_saisie.substring(ind_deb_mot,len_ch)+"*))";		 	} 	else {				 		filtre = attribut_filtre+nom_saisie.substring(ind_deb_mot,len_ch)+"*)";						 	} 	return filtre; }  //constitution d'un filtre de type (&(attribut=mot1)(attribut=mot2)..(attribut=motn)) function creation_filtre_et_reg(filtre,attribut_filtre,nom_saisie,len_ch,ind_deb_mot,name_reg) { 	if (filtre!="") { 		<!--si le dernier caractre est un blanc alors tous les mots ont t chargs, sinon il faut concatner le dernier mot--> 		filtre = "(&"+filtre+attribut_filtre+nom_saisie.substring(ind_deb_mot,len_ch)+"*)("+filtre+attribut_filtre+name_reg+"*))";		 	} 	else {				 		filtre = "(&"+attribut_filtre+nom_saisie.substring(ind_deb_mot,len_ch)+"*)"+attribut_filtre+name_reg+"*))";						 	} 	return filtre; }  //constitution d'un filtre de type (&(attribut=mot1)(attribut=mot2)..(attribut=motn)) function creation_filtre_et_natio(filtre,attribut_filtre,nom_saisie,len_ch,ind_deb_mot,b_category) { 	<!--si le dernier caractre est un blanc alors tous les mots ont t chargs, sinon il faut concatner le dernier mot--> 	if (nom_saisie.charAt(len_ch-1)!= " ") { 		var filtre1 = "(&"+filtre+attribut_filtre+nom_saisie.substring(ind_deb_mot,len_ch)+"*)(businesscategory="+b_category+"))"; 		var filtre2 = "(&"+filtre+attribut_filtre+nom_saisie.substring(ind_deb_mot,len_ch)+"*)(rafbusinesscategoryherite="+b_category+"))";				 		var filtre = "(|"+filtre1+filtre2+")"; 	} 	return filtre; }  //constitution d'un filtre de type (&(attribut=mot1)(attribut=mot2)..(attribut=motn)) function creation_filtre_et_natio_tous(filtre,attribut_filtre,nom_saisie,len_ch,ind_deb_mot,b_category) { 	<!--si le dernier caractre est un blanc alors tous les mots ont t chargs, sinon il faut concatner le dernier mot--> 	if (nom_saisie.charAt(len_ch-1)!= " ") { 		var filtre1 = "(&"+filtre+attribut_filtre+nom_saisie.substring(ind_deb_mot,len_ch)+"*)(businesscategory!="+b_category+"))"; 		var filtre2 = "(&"+filtre+attribut_filtre+nom_saisie.substring(ind_deb_mot,len_ch)+"*)(rafbusinesscategoryherite!="+b_category+"))";				 		var filtre = "(|"+filtre1+filtre2+")"; 	} 	return filtre; }  //constitution d'un filtre de type (|(attribut=mot1)(attribut=mot2)..(attribut=motn)) function creation_filtre_ou(filtre,attribut_filtre,nom_saisie,len_ch,ind_deb_mot) { 	if (filtre!="") { 		<!--si le dernier caractre est un blanc alors tous les mots ont t chargs, sinon il faut concatner le dernier mot--> 		if (nom_saisie.charAt(len_ch-1)!= " ") { 			filtre = "(|"+filtre+attribut_filtre+nom_saisie.substring(ind_deb_mot,len_ch)+"*))";		 		} 	} 	else {				 		filtre = attribut_filtre+nom_saisie.substring(ind_deb_mot,len_ch)+"*)";						 	} 	return filtre; }  function filtre_pers() { 	document.rech_pers.SAISIE.value = document.rech_pers.nom.value; 	 	if (document.rech_pers.SAISIE.value!="") { 		var nom_saisie = document.rech_pers.nom.value.toLowerCase();  		nom_saisie = remplace_accent(nom_saisie); 		nom_saisie = nom_saisie.toUpperCase(); 		nom_saisie = remplace_DifAZ(nom_saisie); 		nom_saisie = net_slash(nom_saisie); 		document.rech_pers.FLT.value = "rafsncaps=*/"+nom_saisie+"*"; 		return true; 	} 	else { 		alert("Veuillez saisir le nom de la personne recherche."); 		return false; 	} }   function filtre_unite() { 	var nom_saisie = document.rech_unite.nom.value; 	<!--Formatage du filtre--> 	var ind=0; 	var nb_mot=0; 	var ind_init=0; 	var len_ch = nom_saisie.length; 	var car_prec=""; 	var car_suiv=""; 	var car_cour=""; 	var ch_flt="";		 	var ind_deb_mot=0; 	var n_saisie=""; 	var n_saisie2=""; 	var premier_mot=0; 		 	ind=0; 	init_deb_mot=0; 	len_ch = nom_saisie.length; 	 	<!--initialisation de l'indice du dbut du premier mot, en sautant les blancs ventuellement--> 	while ((nom_saisie.charAt(ind_init)==" ")&(ind_init<=len_ch)) { 		ind_init	= ind_init + 1; 	} 	 	<!--constitution du filtre si la saisie n'est pas vide--> 	if (ind_init != len_ch) { 	 		document.rech_unite.SAISIE.value = nom_saisie; 		document.rech_unite.P_PREC.value = "index.htm";  		<!--les accents sont enlevs et les caractres non alphanumriques sont remplacs par des blancs--> 		nom_saisie = nom_saisie.toLowerCase(); 		nom_saisie = remplace_accent(nom_saisie); 		nom_saisie = nom_saisie.toUpperCase(); 		nom_saisie = remplace_DifAZ(nom_saisie); 		nom_saisie = net_slash(nom_saisie); 		//alert(nom_saisie);							 		<!--dcoupage des mots saisies--> 		for (ind=ind_deb_mot;ind<=len_ch;ind++){ 			car_prec=nom_saisie.charAt(ind-1); 			car_cour=nom_saisie.charAt(ind);				 			car_suiv=nom_saisie.charAt(ind+1); 			 			<!--un mot est dtect si seulement si le caractre suivant n'est pas un blanc--> 			if ((car_cour=="/")&(car_prec!="/")) {	 			 				ch_flt= ch_flt+"(rafRechercheServiceCaps="+nom_saisie.substring(ind_deb_mot,ind)+"*)"; 							 				n_saisie = n_saisie + nom_saisie.substring(ind_deb_mot,ind) +"*"; 				n_saisie2 = n_saisie2 + nom_saisie.substring(ind_deb_mot,ind)+","; 				nb_mot = nb_mot + 1;				 			} 			<!--reprer le dbut du mot suivant--> 			if ((car_cour=="/")&(car_suiv!="/")) {	 				ind_deb_mot = ind + 1; 			}		 		} 		 		nb_mot = nb_mot + 1; 		n_saisie = n_saisie + nom_saisie.substring(ind_deb_mot,ind); 		n_saisie2 = n_saisie2 + nom_saisie.substring(ind_deb_mot,ind);	 				 		<!-- constitution du filtre sur l'attribut "ou" (car il y a un champ avec la concatnation du prfixe et du libell-->		 		ch_flt = creation_filtre_et(ch_flt,"(rafRechercheServiceCaps=",n_saisie,len_ch,ind_deb_mot); 		//alert(ch_flt);							 		<!-- contannation de tous les critres de rechercche --> 		document.rech_unite.FLT.value = ch_flt; 		document.rech_unite.TAB_MOT.value = n_saisie2; 		return true;		 	} 	else { 		alert("Veuillez saisir votre recherche."); 		return false; 	}	 } </SCRIPT>  </HEAD>  <BODY BGCOLOR="#FFFFFF" ALINK="#FFCC99"> <!--Bandeau du haut--> <TABLE WIDTH="100%" BORDER="0" CELLSPACING="0" VSPACE="0" HSPACE="0" CELLPADDING="3">   <TR VALIGN="TOP" ALIGN="LEFT">  		<TD HEIGHT="46" BGCOLOR="#3366CC"> 		<TABLE BORDER="0" CELLPADDING="0" CELLSPACING="0"> 			<TR> 				<TD WIDTH="101" ALIGN="RIGHT"><A HREF="http://www.service-public.fr"><IMG SRC="http://www.service-public.fr/images/rf_logo.gif" WIDTH="101" HEIGHT="57" border="0" ALT="Accueil"></A></TD> 				<TD WIDTH="328" ALIGN="LEFT"><A HREF="http://www.service-public.fr"><IMG SRC="http://www.service-public.fr/images/logo_fra.gif" WIDTH="241" HEIGHT="57" border="0" ALT="Accueil"></A></TD> 				<TD ALIGN="LEFT" WIDTH="317" VALIGN="BOTTOM"> 					<H4><FONT COLOR="#FFFFFF">[</FONT> <A HREF="http://larecherche.service-public.fr"><FONT COLOR="#FFFFFF">Recherche avanc&eacute;e</FONT></A> <FONT COLOR="#FFFFFF">|</FONT> <A HREF="http://www.service-public.fr/aide/aide.html"><FONT COLOR="#FFFFFF">Aide</FONT></A> <FONT COLOR="#FFFFFF">|</FONT> <A HREF="http://www.service-public.fr/accueil/plan.html"><FONT COLOR="#FFFFFF">Plan du site</FONT></A> <FONT COLOR="#FFFFFF">]</FONT></H4> 				</TD> 			</TR> 		</TABLE> 	</TD> </TR>  <TR ALIGN="left" VALIGN="middle" BGCOLOR="#EEF0FB">  	<TD> &nbsp;<A HREF="http://www.service-public.fr">Accueil</A>&nbsp;&gt;&nbsp;<FONT COLOR="#CC3333">Annuaire des services de l'administration</FONT></TD> </TR> </TABLE> <br>	 <!--Navigation--> <table width="100%" border="0" vspace="0" hspace="0" cellpadding="0" cellspacing="0"> <tr>    <td width="573">      <h3>Annuaire des services de l'administration</h3>   </td> </tr> </table> <table width="615" border="0" cellspacing="0" cellpadding="0"> <tr>   <td width="215" align="left"><a href="national/index.htm"><img src="images/bt_nation_0.gif" width="215" height="23" border="0" ALT="Services de niveau national"></a></td>   <td width="191" align="left"><a href="local/index.htm"><img src="images/bt_locale_0.gif" width="191" height="23" border="0" ALT="Services de niveau local"></a></td>   <td width="209" align="left"><a href="resp/index.htm"><img src="images/bt_respon_0.gif" width="209" height="23" border="0" ALT="Coordonn&eacute;es des responsables"></a></td> </tr> </table>  <!--Page d'accueil-->    <TABLE WIDTH="100%" BORDER="0" CELLPADDING="0" CELLSPACING="0" VSPACE="0" HSPACE="0">    <TR VALIGN="TOP">       <TD WIDTH="60%" ><br><br><br> 		  <table border="0" cellspacing="0" cellpadding="0" width="100%">                   <tr>             <td colspan="2" height="22"> <font color="C72121"><img src="images/recherch.gif" width="28" height="28" align="ABSMIDDLE"><b>               <font color="#3366CC">Recherche rapide dans toute l'administration</font></b></font></td>          </tr>          <tr>             <td rowspan=2 width="20" valign="BOTTOM" align="RIGHT"><img src="images/e_vgrad.gif" width="20" height="125" align="BOTTOM"></td>          </tr>          <tr>             <td>               <table width="437" border="0" cellpadding="2" cellspacing="0">              	<!--Recherche pour nom ou activits du service--> 					<tr>							             	 	              <td width="8" align="right" valign="baseline"><font color="#000000"><img src="images/puce_o.gif" width="7" height="7"></font></td> 	              <td colspan="2"><font color="#000000"><b>Service :</b> recherche  	                par sigle, nom, activit&eacute;, r&eacute;gion, d&eacute;partement<br> 	                Tapez un ou plusieurs mots, ex. : DDE Dordogne<br> 	                &nbsp; </font></td> 	            </tr> 	            <tr bgcolor="#FFFFFF"> 						<FORM METHOD="get" ACTION="result/rech_s.htm" NAME="rech_unite" onsubmit="return filtre_unite()">							 							<INPUT TYPE="hidden" NAME="FLT" VALUE="">	 							<INPUT TYPE="hidden" NAME="SAISIE" VALUE=""> 							<INPUT TYPE="hidden" NAME="P_PREC" VALUE=""> 							<INPUT TYPE="hidden" NAME="TAB_MOT" VALUE=""> 							<INPUT TYPE="hidden" NAME="SIZELIMIT" VALUE="200">											 							<INPUT TYPE="hidden" NAME="DN" VALUE="ou=structures_plates, ou=raf, o=gouv, c=fr">	                 		                 <td colspan="2">  		                   <input type="TEXT" name="nom" class="typetext" size="20"> 		                 </td> 		                 <td width="203">  		                   <input type="image" border="0" src="images/recherche.gif" width="64" height="21" ALT="Lancer la recherche"> 		                 </td> 		            	</FORM>		                  	           	</tr>                <!--Recherche d'un responsable-->                <tr bgcolor="#FFFFFF"> 					<FORM METHOD="get" ACTION="result/rech_p.htm" NAME="rech_pers" onsubmit="return filtre_pers()"> 						<INPUT TYPE="hidden" NAME="FLT" VALUE="">	 						<INPUT TYPE="hidden" NAME="SAISIE" VALUE="">									 						<INPUT TYPE="hidden" NAME="DN" VALUE="ou=personnes, ou=raf, o=gouv, c=fr"> 						<INPUT TYPE="hidden" NAME="SIZELIMIT" VALUE="200">	 						<INPUT TYPE="hidden" NAME="ZONE" VALUE="1">	                 	                 <td width="8" valign="baseline" align="left"><font color="#000000"><img src="images/puce_o.gif" width="7" height="7"></font></td> 	                 <td width="277"><font color="#000000"><b>Responsable :</b> 	                   recherche par nom<br> 	                   Ex. : Dubois</font></td> 	                 <td width="203">&nbsp;</td> 	               </tr> 	               <tr bgcolor="#FFFFFF">  	                 <td colspan="2">  	                   <input type="TEXT" name="nom" class="typetext" size="20"> 	                 </td> 	                 <td width="203">  	                   <input type="image" border="0" src="images/recherche.gif" width="64" height="21" ALT="Lancer la recherche"> 	                 </td>                  </FORM>                </tr>              </table>            </td>          </tr>           <tr>  				<td width="20" align="RIGHT"><img src="images/e_basg.gif" width="20" height="14"></td> 				<td align="LEFT"><img src="images/e_hori.gif" height="14" width="120"></td>           </tr>        </table>             </TD>      <!--Actualits-->      <TD align="righ" width="40%">  			&nbsp; 	  </TD>    </TR>  </TABLE>  <BR>  <table cellspacing="0" border="0" cellpadding="0" width="100%">    <tr width="100%">             <td align="LEFT"><a href="http://www.service-public.fr">Accueil</a> | <a href="http://www.service-public.fr/aide/aide_services.html">Aide</a>       | <a href="http://www.service-public.fr/accueil/lien.html">Etablir un lien</a>       | <a href="http://www.service-public.fr/question_admin/votre_question.html">Posez votre question</a>       | <a href="http://www.service-public.fr/remarques/rem_services.html">Vos remarques</a>       | <a href="http://www.service-public.fr/info/info.html">Informations sur service-public.fr</a></td></tr>    <tr width="100%"> <td align="LEFT">&copy; 2001 La Documentation fran&ccedil;aise</td>    </tr>  </table> <!--Statistiques-->  <script language="JavaScript1.2"> <!-- hsh = new Date(); hsd = document; hsi = '<img width="1" height="1" src="http://logp.xiti.com/hit.xiti?s=17709&s2=4' hsi += '&p=&hl=' + hsh.getHours() + 'x' + hsh.getMinutes() + 'x' + hsh.getSeconds(); if(parseFloat(navigator.appVersion)>=4) {Xiti_s=screen;hsi += '&r=' + Xiti_s.width + 'x' + Xiti_s.height + 'x' + Xiti_s.pixelDepth + 'x' + Xiti_s.colorDepth;} hsd.writeln(hsi + '&ref=' + hsd.referrer.replace('&', '$') + '" >'); //--> </script> <noscript> <img width="1" height="1"  src="http://logp.xiti.com/hit.xiti?s=17709&s2=4&p=&" > </noscript> </BODY> </HTML> 
