function esc(_id){
	if (document.getElementById(_id).style.display == 'none') {
		document.getElementById(_id).style.display = '';
	}
	else {
		document.getElementById(_id).style.display = 'none';
	}
}
function valida_cadastro() {
	var Check = 0;
	if (document.form.nome.value == '') { Check = 1; }
	if (document.form.email.value == '') { Check = 1; }
	if (document.form.senha1.value == '') { Check = 1; }
	if (document.form.senha2.value == '') { Check = 1; }	
	if (Check == 1) {
		alert("Atenção!\n\nTodos os campos devem ser preenchidos!");
		return false;
	} else {
		document.form.submit.disabled = true;
		return true;
	}
}
function criar() {
	location.href='index.php?pagina=cadastro';
}
function sair(id) {
	location.href='index.php?cliente='+id;
}
function alterar_categoria(_id){
	if (document.getElementById(_id).style.display == 'none') {
		document.getElementById(_id).style.display = '';
		document.getElementById('cat_'+_id).style.display = 'none';
	}
	else {
		document.getElementById(_id).style.display = 'none';
		document.getElementById('cat_'+_id).style.display = '';
	}
}
function excluir_categoria(codigo) {

if (window.confirm('Deseja realmente excluir esta categoria?\n\nEsteja ciente que todos os registros vinculados a esta categoria também serão excluídos.\n\nPara confirmar, pressione OK.')) { 

		document.getElementById('conf_'+codigo).style.display == 'none';
		document.getElementById('conf_'+codigo).innerHTML = '<font color=#DD0000>Aguarde...</font>';
		location.href='clientes.php?pagina=categorias&query=excluir&cod_categoria='+codigo;
	
	}

}
function validar_lancamento() {
	var Check = 0;
	if (document.flan.descricao.value == '') { Check = 1; }
	if (document.flan.dia.value == '') { Check = 1; }
	if (document.flan.mes.value == '') { Check = 1; }
	if (document.flan.ano.value == '') { Check = 1; }
	if (Check == 1) {
		alert("Atenção\n\nVocê deve preencher a descrição, dia, mês e ano.\nNão esqueça também de informar o valor do débito ou crédito.");
		return false;
	} else {
		document.flan.submit.disabled = true;
		return true;
	}
}
function excluir(mes,ano,codigo) {

	if (window.confirm('Deseja realmente excluir este registro?')) { 
		location.href='clientes.php?pagina=relatorio_mensal&mes1='+mes+'&ano1='+ano+'&query=excluir&registro='+codigo;
	}

}
