function resetBrandProdotti()
{
	window.document.getElementById('brands_id').selectedIndex=0;
	window.document.getElementById('prodotti_id').selectedIndex=0;
}

function resfreshSelect(rootPath)
{
	window.document.getElementById('categorie_id').disabled=true;
	window.document.getElementById('brands_id').disabled=true;
	window.document.getElementById('prodotti_id').disabled=true;
	
	var object_id = window.document.getElementById('object_id').value;
	var categorie_id = window.document.getElementById('categorie_id').options[window.document.getElementById('categorie_id').selectedIndex].value;
	var brands_id = window.document.getElementById('brands_id').options[window.document.getElementById('brands_id').selectedIndex].value;
	var prodotti_id = window.document.getElementById('prodotti_id').options[window.document.getElementById('prodotti_id').selectedIndex].value;
	
	window.document.getElementById('searchButton').className='invisibile';
	window.document.getElementById('ajaxLoader').className='visibile';
	
	ajaxUrl= rootPath + "products/ajax/loadSelectRicercaProdotto.php?object_id=" + object_id + "&categorie_id=" + categorie_id + "&brands_id=" + brands_id + "&prodotti_id=" + prodotti_id + "&ajax_flag=1";
	
	//alert(ajaxUrl);
	
	if (window.XMLHttpRequest) 
	{
		ricerca_select = new XMLHttpRequest();
		ricerca_select.onreadystatechange = updateSelects;
		ricerca_select.open("GET",ajaxUrl,true);
		ricerca_select.send(null);
	}
	else
	{
		if (window.ActiveXObject) 
		{
			ricerca_select = new ActiveXObject("Microsoft.XMLHTTP");
			if (ricerca_select) 
			{
				ricerca_select.onreadystatechange = updateSelects;
				ricerca_select.open("GET",ajaxUrl,true);
				ricerca_select.send();
			}
		}
	}
	
	
}
function updateSelects()
{ 
	if (ricerca_select.readyState == 4) 
	{ 
		window.document.getElementById('categorie_id').disabled=false;
		window.document.getElementById('brands_id').disabled=false;
		window.document.getElementById('prodotti_id').disabled=false;
		window.document.getElementById('searchButton').className='visibile';
		window.document.getElementById('ajaxLoader').className='invisibile';
		var response = ricerca_select.responseText;
		//alert(response);
		var arrSelect = response.split("|");
		if(arrSelect.length==3)
		{
//			alert(arrSelect[0]);
			window.document.getElementById('categorie_cont').innerHTML = arrSelect[0];
			window.document.getElementById('brands_cont').innerHTML = arrSelect[1];
			window.document.getElementById('prodotti_cont').innerHTML = arrSelect[2];
		}
	}
}
