// JavaScript Document

function aziende_doSearch() {
	var p = document.getElementById("aziende_province");
	var c = document.getElementById("aziende_categorie");
	var a = document.getElementById("aziende_affiliazione");
	//alert("p:"+p.value+" c:"+c.value+" a:"+a.value);
	var newUrl = siteBaseUrl+"imprese/"+p.value+"/"+c.value+"/"+a.value;
	//alert(newUrl);
	window.location = newUrl;
}