
function ver_informe(){
	if ($("#informe").val()==1){
		location.href="/zona_usuario/detalle_ingresos.asp?a=" + $("#year").val() + "&mes=" + $("#mes").val() + "&mes_texto=" + $('#mes :selected').text() ;
	}
if ($("#informe").val()==2){
		location.href="/zona_usuario/presupuestos.asp";
	}	
if ($("#informe").val()==3){
		location.href="/zona_usuario/propietarios.asp";
	}
}
function campos_filtro(){

if ($("#informe").val()!=1){
		 $("#year").hide();
		 $("#mes").hide();
	}else{
 $("#year").show();
		 $("#mes").show();
}	
	
}
