function search_brand($gender)
{
	//alert('passé par là')
	
		switch(document.getElementById('search_marque').value)
		{
		case "Ed Hardy" :
				if ($gender == "H")
				{
					var url="http://www.flavorpark.com/donedhardy/HOMME/selection.php?categorie=" + document.getElementById('search_categorie').value + "&start=0";
				}else{
					var url="http://www.flavorpark.com/donedhardy/FEMME/selection.php?categorie=" + document.getElementById('search_categorie').value + "&start=0";
				}
		break;
		case "Christian Audigier" :
				if ($gender == "H")
				{
					var url="http://www.flavorpark.com/christianaudigier/HOMME/selection.php?categorie=" + document.getElementById('search_categorie').value + "&start=0";
				}else{
					var url="http://www.flavorpark.com/christianaudigier/FEMME/selection.php?categorie=" + document.getElementById('search_categorie').value + "&start=0";
				}
		break;
		case "Rich Yung" :
					var url="http://www.flavorpark.com/richyungsociety/";
		break;
		case "Dumpe Fresh" :
				if ($gender == "H")
				{
					var url="http://www.flavorpark.com/dumpefresh/";
				}else{
					var url="http://www.flavorpark.com/dumpefresh/";
				}
		break;
		case "Crooks&Castles" :
					var url="http://www.flavorpark.com/crooksncastles/HOMME/selection.php?categorie=" + document.getElementById('search_categorie').value + "&start=0";
		break;
		case "The Year Of" :
					var url="http://www.flavorpark.com/theyearof/HOMME/selection.php?categorie=" + document.getElementById('search_categorie').value + "&start=0";
		break;
		case "Luxirie" :
					var url="http://www.flavorpark.com/luxirie/FEMME/selection.php?categorie=" + document.getElementById('search_categorie').value + "&start=0";
		break;
		case "LRG" :
					var url="http://www.flavorpark.com/lrg/HOMME/selection.php?categorie=" + document.getElementById('search_categorie').value + "&start=0";
		break;		
		default : 
					var url="http://www.flavorpark.com";
		}
		
			//parent.blank.href = url;
			window.open (url);
		//return true;
	
}