		function ValidaForm(){
			// Fale Conosco 
			if(document.form1.nome.value.length < 4){
				//alert("Preencha corretamente o nome!");
				document.form1.nome.focus();
				document.getElementById('nome').style.border = 'solid 1px #FF4B4B';
				return false;
			}
			
			if(document.form1.tel.value.length < 6){
				//alert("Preencha corretamente o telefone!");
				document.form1.tel.focus();
				document.getElementById('tel').style.border = 'solid 1px #FF4B4B';
				return false;
			}
			
			if( document.form1.email.value=="" || document.form1.email.value.indexOf('@')==-1 || document.form1.email.value.indexOf('.')==-1 ){
				//alert("Preencha corretamente o e-mail!");
				document.form1.email.focus();
				document.getElementById('email').style.border = 'solid 1px #FF4B4B';
				return false;
			}
			
			if(document.form1.cidade.value == ""){
				//alert("Preencha corretamente a cidade!");
				document.form1.cidade.focus();
				document.getElementById('cidade').style.border = 'solid 1px #FF4B4B';
				return false;
			}
			
			if(document.form1.assunto.value.length < 4){
				//alert("O assunto deve conter mais de 4 caracteres!");
				document.form1.assunto.focus();
				document.getElementById('assunto').style.border = 'solid 1px #FF4B4B';
				return false;
			}
			
			
			if(document.form1.mensagem.value == ""){
				//alert("Preencha corretamente o campo mensagem!");
				document.form1.mensagem.focus();
				document.getElementById('mensagem').style.border = 'solid 1px #FF4B4B';
				return false;
			}
			
			
			if(document.form1.mensagem.value.length < 20){
				alert("A mensagem deve conter no mínimo 20 caracteres!");
				document.form1.mensagem.focus();
				document.getElementById('mensagem').style.border = 'solid 1px #FF4B4B';
				return false;
			}
			return true;
		}
		
