function valida_dados_newsletter(frm){
if(!carac_invalidos(frm)){
return false;}
if(frm.nome.value==""){
if(idi==0)
alert("Preencha o campo 'Nome'.");
else
alert("Fill your Name into this box.");
frm.nome.focus();
return false;}
if(valida_email(frm.email))
return true
else
return false}
