function search(f){
	
	var formDeaths = $('#formDeaths').serialize();
	
	$.ajax({
		url:'falecimentos.busca.php',
		dataType:'html',
		data: formDeaths,
		type:'POST',
		beforeSend: function(){
			$('#listDeaths').css('display', 'none');
			$('#carregando-detalhes').html('<img src="../images/prever-loading.gif" title="Carregando..." alt="Carregando..."/>');
		},
		success: function(data,textStatus){
			$('#carregando-detalhes').html(data);
		}
	});	
}

function backToForm(){
	$('#falecimento-janela').load('falecimentos.novo.php');
}

function detalhesFalecimento(seq, fun) {
	
	$.ajax({
		url:'detalhe_falecimento.php',
		dataType:'html',
		data: {seq: seq, fun: fun},
		type:'GET',
		beforeSend: function(){
			$('#listDeaths').css('display', 'none');
			$('#carregando-detalhes').html('');
			$('#carregando-detalhes').html('<img src="../images/prever-loading.gif" title="Carregando..." alt="Carregando..."/>');
		},
		success: function(data,textStatus){
			$('#carregando-detalhes').html(data);
		}
	});
	
}

