
function excluir_emailnews(){
    var email, pergunta;
    email = document.getElementById('email').value;
    pergunta = confirm("DESEJA REALMENTE REMOVER O E-MAIL DA NEWSLETTER?");
    if(pergunta == true){
        window.location.href="config/excluirNewsletter.php?email=" + email;
    }
}



