// VALIDAÇÃO DE E-MAIL
function checkEmail(nome)
{
 if (/^\w+([\.-]?\w+)*@\w+([\.-]?\w+)*(\.\w{2,3})+$/.test(nome.value))
 {
   return (true)
 }
   alert("O e-mail informado não é valido.")
   document.getElementById('email').focus();
   return (false)
   
}

function valida(){
	
   nome_contato=document.getElementById('nome').value
   email_contato=document.getElementById('email')
   
   if(nome_contato.length==0){
	 alert("Por favor, informe o seu nome.")
	 document.getElementById('nome').focus();	 
	 
	 return false
	 
   }
   
    if(checkEmail(email_contato)==false){return false}
   
   document.newsletters.submit()

}