
			function checar(form)
			{
				var NOME=document.form1.nome.value;
				var EMAIL=document.form1.email.value;
				var TELEFONE=document.form1.telefone.value;
					
					if(NOME == "")
					{
						alert("Falta preencher o campo Nome");
						document.form1.nome.focus();
						return false;
					}
					
							if(EMAIL.indexOf("@")== -1)
					{
						alert("Falta alguma coisa . ponto e  @ ");
						document.form1.email.focus();
						return false;
					}				
					if(TELEFONE == "")
					{
						alert("Falta preencher o campo Telefone");
						document.form1.telefone.focus();
						return false;
					}
				
			}
			
			
			
			function news(form)
			{
				
				var EMAIL=document.form2.TXTemail.value;
			
					
				
					
							if(EMAIL.indexOf("@")== -1)
					{
						alert("Falta alguma coisa no e-mail: . ou @ ");
						document.form2.TXTemail.focus();
						return false;
					}				
				
				
			}
	