function valida_newsletter_cadastro(f){
	if(f.cad_nome.value==""){
		alert("O campo nome é de preechimento obrigatório");
		f.cad_nome.focus();
		return false;
	}
	if ( (f.cad_email.value.length < 5) || (f.cad_email.value.indexOf("@")==-1) ){
		alert("E-mail inválido");
		f.cad_email.focus();
		return false;
	}
	return true;
}
