function valida_news()
{
	<!-- Campo Nome -->
	if (document.formNews.txtNome.value == ""){
		alert('Preencha o campo Nome');
		document.formNews.txtNome.focus();
		return false;
	}
<!-- Campo E-mail  -->

		if (document.formNews.txtNews.value == ""){
		alert('Preencha o campo E-mail');
		document.formNews.txtNews.focus();
		return false;
		}
	if (document.formNews.txtNews.value.indexOf('@', 0) == -1 ||
  document.formNews.txtNews.value.indexOf('.', 0) == -1)
  {
    alert("E-mail invalido!");
    document.formNews.txtNews.focus();
    return false;
}
}