function f_rechercher_site() {
	var message = "";
	if (document.rechercher_site.mots.value == "") {
		message += "Saisissez le(s) mot(s) à rechercher.\n";
	}
	if (message != "") {
		alert(message);
	} else {
		document.rechercher_site.submit();
	}
}

function f_ecrire_moteur_recherche() {
	var js_Moteur_Recherche = "";
	js_Moteur_Recherche += "<ilayer id='formulaire_de_recherche' name='formulaire_de_recherche'>\n";
	js_Moteur_Recherche += " <table width='260' border='0' cellspacing='8' cellpadding='0'>\n";
	js_Moteur_Recherche += " <form action='/asp/recherche_site.asp' method='post' name='rechercher_site' id='rechercher_site'>\n";
	js_Moteur_Recherche += "  <tr>\n";
	js_Moteur_Recherche += "   <td width='150' class='petit'>Rechercher sur ce site<br>";
	if (document.layers) {
		js_Moteur_Recherche += "<input name='mots' type='text' id='mots' size='15'>";
	} else {
		js_Moteur_Recherche += "<input name='mots' type='text' id='mots' size='25' class='input-recherche'>";
	}
	js_Moteur_Recherche += "</td>\n";
	js_Moteur_Recherche += "   <td width='80' valign='bottom' class='petit'><a href='#' onClick='f_rechercher_site();return(false);' title='Rechercher sur le site'><img alt='Rechercher sur le site' src='/img/charte/bouton_ok.gif' width='16' height='16' border='0' align='absmiddle'></a></td>\n";
	js_Moteur_Recherche += "  </tr>\n";
	js_Moteur_Recherche += " </form>\n";
	js_Moteur_Recherche += " </table>\n";
	js_Moteur_Recherche += "</ilayer>\n";
	return js_Moteur_Recherche;
}
document.write(f_ecrire_moteur_recherche());