function fValidaNews()
{
	if (frmBoletim.nome1.value.length == "")
	{
		alert("O Nome é um campo obrigatório !");
		frmBoletim.nome1.focus();
		return (false);
	}
	if (/^\w+([\.-]?\w+)*@\w+([\.-]?\w+)*(\.\w{2,3})+$/.test(frmBoletim.email.value) == false)
	{
		alert("Preencha o E-mail corretamente ! ");
		frmBoletim.email.focus();
		return (false);
	}
}
