function esqueciSenha() {
    $.post('ajax/alerta.kmf?acao=esqueci', $('#form_esq').serialize(), function html(html) { $('#resposta_senha').html(html); });
}

function enviaCadastroAlerta() {
    $.post('ajax/alerta.kmf?acao=cadastro', $('#form_fcnsc').serialize(), function html(html) { $('#resposta_alerta').html(html); $('html, body').animate({scrollTop: '0px'}, 1000); });
}

function enviaEdicaoAlerta() {
    $.post('ajax/alerta.kmf?acao=edicao', $('#form_mod_cad').serialize(), function html(html) { $('#resposta_alerta').html(html); $('html, body').animate({scrollTop: '0px'}, 1000); });
}

function limpaCamposCadastro() {
    $('#expr').val('');
    $('#slct1').val('');
    $('#snome').val('');
    $('#smail').val('');
    $('#ssenha').val('');
    $('#scsenha').val('');
}

function excluirCadastroInterno() {
    $.get('alerta_cadastro_excluir.kmf?apagar=1', '', function html(html) { window.location = 'alerta.kmf'; });
}


