// JavaScript Document



		 function valida_news(form1){
			
			if(form1.txNome.value == ""){
				alert("Informe seu nome por gentileza");
				form1.txNome.focus();
				return false;
			}
			
			if(form1.txEmail.value == ""){
				alert("Informe seu Email");
				form1.txEmail.focus();
				return false;
			}	
			
			if(form1.txEmail.value.indexOf('@',0) == -1){
				alert("O Email não contém -> @ <- Verifique");
				form1.txEmail.focus();
				return false;
				}
			
			if(form1.txEmail.value.indexOf('.',0) == -1){
				alert("o Email nao contem -> . <- Verifique");
				form1.txEmail.focus();
				return false;
				}
				return true;
				}


