/*************Browse_cat : produits d'une catégorie *****************/

function putmarq(){//on sélectionne une marque
	window.location = '/index.php?id=browse_cat&idCat=' + document.getElementById("idCateg").value + '&marq='+text_html(document.getElementById("marque").options[document.getElementById("marque").selectedIndex].text);
}


function putmod(){//on sélectionne un modele
	if(document.getElementById("modele").selectedIndex > 0) 
		window.location='/index.php?id=browse_cat&idCat=' + document.getElementById("idCateg").value + '&marq=' + text_html(document.getElementById("marque").options[document.getElementById("marque").selectedIndex].text) + '&modeleID=' + document.getElementById("modele").value;
	else
		putmarq();
}

/********browse_model : Accéssoires d'un modèle *************/

function rech_modele(){//On sélectionne un modèle
	if(document.getElementById("browse_model_idModele").value != 0) {
		window.location='/index.php?id=browse_model&idModele='+document.getElementById("browse_model_idModele").value;
	}
}

function accessoire_modele(){//On sélectionne un type d'accessoire pour le modèle
	if(document.getElementById("browse_model_cats").value > 0)
		window.location="/index.php?id=browse_model&idModele=" + document.getElementById("browse_model_modele").value + "&cats=" + document.getElementById("browse_model_cats").value;
}

