function check_op() {
	type_prod= document.make_rech.type_prod.options[document.make_rech.type_prod.selectedIndex].value;
	brand= document.make_rech.brand.options[document.make_rech.brand.selectedIndex].value;
	matiere= document.make_rech.matiere.options[document.make_rech.matiere.selectedIndex].value;
	couleur= document.make_rech.couleur.options[document.make_rech.couleur.selectedIndex].value;
	if (type_prod == "all" && brand == "all" && matiere == "all" && couleur == "all") {
		message = "Avec Naturel\n"
		+ "\n"
		+ "Aucun critère de recherche n'est sélectionné.\n"
		+ "Vous allez charger la totalité des produits présentés sur ce site.\n"
		+ "Le chargement de la page de résultat risque d'être très long ! \n";
		reponse= confirm(message);
		if (reponse) document.make_rech.submit();
	} else {
		document.make_rech.submit();
	}
}