var url= "/index.php/oeuvres.html?search=yes";
function generateURL(){
	
	/*peintures = false;
	sculptures = false;
	if (document.getElementById("search-peintures") && document.getElementById("search-peintures").checked){
		peintures = true;
	}
	if (document.getElementById("search-sculptures") && document.getElementById("search-sculptures").checked){
		sculptures = true;
	}
	if (!peintures && !sculptures){
		peintures = true;
	}
	if (peintures && sculptures){
		url += "/id/21";
	} else if (peintures){
		url += "/id/3";
	} else {
		url += "/id/4";
	}*/
	
	if (document.getElementById("top_recherche_categorie") && document.getElementById("top_recherche_categorie").value != "0"){
		url += "&categorie="+document.getElementById("top_recherche_categorie").value;
	}
	if (document.getElementById("top_recherche_theme") && document.getElementById("top_recherche_theme").value != "0"){
		url += "&themes="+document.getElementById("top_recherche_theme").value;
	}
	if (document.getElementById("top_recherche_artiste") && document.getElementById("top_recherche_artiste").value != "0"){
		url += "&cat="+document.getElementById("top_recherche_artiste").value;
	}
	if (document.getElementById("top_recherche_budget") && document.getElementById("top_recherche_budget").value != "0"){
		url += "&price=1,"+document.getElementById("top_recherche_budget").value;
	}

	document.getElementById("lienrecherche").href=url;
}

function generateURLPrice(){
	if (document.getElementById("budget-precis") && document.getElementById("budget-precis").value != "0"){
		url += "&price=1,"+document.getElementById("budget-precis").value;
	}
	document.getElementById("search-price-link").href=url;
}
