// JavaScript Document
//VALIDA CAMPOS DE FORMULÁRIO e Esconde janela
function fecha(){
alert('Seu cadastro foi cancelado ao fechar a janela!');
document.getElementById('email').value = ""; //apaga valor
document.getElementById('eskond').style.display = 'none'; //Esconde janela!
// window.location=self.location; //Volta a janela padrão Inicial
}

function enviar(){
//VALIDA O EMAIL
if (document.getElementById('email').value =='' ||  document.getElementById('email').value.indexOf('@')==-1 ){
document.getElementById('NEWSERRO').innerHTML = 'por favor, digite um e-mail v&aacute;lido!';
document.getElementById('email').focus();
alert('Por favor, verifique o e-mail digitado!');
document.getElementById('eskond').style.display = 'none'; //Caso usuário apague email, a caixa some e pergunta retorna!
return false;
}else 

//ABRE O A CAIXA DE PERGUNTA
if (document.getElementById('freq1').checked == false && document.getElementById('freq2').checked == false && document.getElementById('freq3').checked == false ){
alert('Selecione com que frequencia deseja receber nossa newsletter');
document.getElementById('eskond').style.display = 'block'; //Mostra Dialogo para contato Opção de Newsletter
return false;
}else  


document.formulario.action='cadastra_newsletter.php';
document.formulario.submit();
}

/*
<!-- NAO UTILIZAR! ERRO!
<script language="Javascript">
	if (window.top.location!=self.location){
		window.top.location.href=self.location.href;
	}
	if (window.parent.location!=self.location){
		parent.location.href=self.location.href;
	}
</script>
-->

*/
