// JavaScript Document
<!--
function valida_newsletter(envia_news){
	
	// VARIAVEIS 
	var nome 			= document.envia_news.txt_nome.value;
	var email 			= document.envia_news.txt_email.value;	

	// VALIDAÇÃO NOME
		if(nome == null || nome == ""){
		alert("O NOME e de preechimento obrigatorio");
		envia_news.txt_nome.focus();
		return false;
	}
	// VALIDAÇÃO E-MAIL
		if(email == null || email == ""){
		alert("O E-MAIL e de preechimento obrigatorio");
		envia_news.txt_email.focus();
		return false;
	}
	
		if ((email.length != 0 && email.indexOf("@") < 1)||email.indexOf('.') < 7)  {
		alert("E-MAIL incorreto");
		envia_news.txt_email.focus();
		return false;	
	  }
	alert("Dados cadastrados com sucesso. Obrigado!")

	return true;
	}
		// BLOQUEIA NUMEROS
		function IsLetter(evt){
		var charCode = (evt.which) ? evt.which : event.keyCode;
      	return (charCode >= 65 && charCode <= 90 || charCode >= 61 && charCode <= 122 || charCode == 32 || charCode == 08 || charCode == 13 || charCode == 132);
      	}	  
-->