<!-- Imprimer
	function printpage() {window.print();}
// Fin imprimer -->

<!-- Texte à rechercher
	function check_search(texte) {
		if ((texte == "") || (texte.length <= 3)) {
			alert("Le texte à rechercher ne peut rester vide ou doit être supérieur à 3 caractères");
			return false;
		}
		else {
			return true;
		}
	}
// Fin texte à rechercher -->