// JavaScript Document

//Inicia todas las variables al recargar la pagina
function inicializa_variables() {
	document.getElementById('idcategoria')[0].selected = true
}

function cargando_select() {
	var cadena = "";
	cadena = "<div id=\"select_index\"><img src=\""+ HTTP_WEB_ROOT +"_img/cargando_select.gif\" width=\"20\" /></div>";
	return cadena;
}

/* Buscador de categorias y subcategorias */
function buscar_subcategoria() {
	var idsubfamilia = document.getElementById("idsubcategoria").value;
	if( idsubfamilia != "0" ) {
		window.location.href = idsubfamilia;
	}
	else {
		alert("Debe seleccionar alguna de nuestras categorias y subcategorias");
	}
}

/* Buscador de productos por nombre */
function busca_producto() {
	var nombre_producto = document.getElementById("nombre_producto").value;
	if( nombre_producto != 0 ) {
		window.location.href = "buscador/" + nombre_producto;
	}
	else {
		alert("Debe indicar el nombre del producto");
	}
}

/* Buscador de productos por nombre */
function buscar_marca() {
	var idmarca = document.getElementById("idmarca").value;
	if( idmarca != "0" ) {
		window.location.href = idmarca;
	}
	else {
		alert("Debe seleccionar alguna de nuestras marcas");
	}
}

function buscar_area()
{
	var idarea = document.getElementById("idarea").value;
	if( idarea != "0" )
	{
		window.location.href = idarea;
	}
	else
	{
		alert("Debe seleccionar alguna de nuestras áreas profesionales");
	}	
}
