    
    function dame_productos(idfam){
        $.ajax({
            type: "POST",
            url: "controlador/listado_productos.php",
            data: "idfam_uso="+idfam,
            success: function(msg){
               // alert("Data Saved: " + msg);
				$('#listado_productos').html(msg);
				$("#listado_producto").accordion({
					autoHeight: false
				});
            }
        });       
    }
	
	function verdetalle(idfam,idpro,pos,arrayse){
		//alert(arrayse)
        $.ajax({
            type: "POST",
            url: "controlador/producto_detalle.php",
            data: "idfam_uso="+idfam+"&idpro="+idpro+"&pos="+pos+"&listaIdese="+arrayse,
            success: function(msg){
               // alert("Data Saved: " + msg);
				$('#listado_productos').html(msg);
            }
        });
		return false;
	}
	
	var color = 0;
	function ilumina(obj) {
		if(color == 0){
			obj.style.backgroundColor = "#FF0000";
			color = 1;
		} else {
			obj.style.backgroundColor = "#CCCCCC";
			color = 0;
		}
	}