var root_path = "/marquimia/";
//var root_path = "/";

function mostrarCategorias(){
	document.getElementById('lista_familias').style.display = "block";
}
function ocultarCategorias(){
	document.getElementById('lista_familias').style.display = "none";
}

function buscarProducto(){
	var q = document.getElementById('p_busqueda').value;
	s = q.split(' ').join('+');
	s = s.toLowerCase();
	s = quitaacentos(s);
	window.location = root_path + "buscar-producto.php?q=" + s;
}

function quitaacentos(t){
á="a";é="e";í="i";ó="o";ú="u";à="a";è="e";ì="i";ò="o";ù="u";ñ="n";ä="a";ë="e";ï= "i";ö="o";ü="u";ç="c";
acentos=/[áéíóúñäëïöüç]/g;
return t.replace(acentos, function($1){return eval($1)});
}

function showUnshow(capa){
	document.getElementById(capa).style.display == "none" ? document.getElementById(capa).style.display = "block" : document.getElementById(capa).style.display = "none";
}
