function cherche() {
 f = document.recherche.categorie;
 if(f.options[f.selectedIndex].value != 0)
	{
	location.href = '' + f.options[f.selectedIndex].value + '-1.html';
	return true;
	}
 else
	{
	alert("Veuillez choisir une catégorie");
	return false;
	}
 }

function cherche_accueil() {
 f = document.recherche.categorie;
 if(f.options[f.selectedIndex].value != 0)
	{
	location.href = 'pages/' + f.options[f.selectedIndex].value + '-1.html';
	return true;
	}
 else
	{
	alert("Veuillez choisir une catégorie");
	return false;
	}
 }
