		function ValidaForm(){
			if(document.form1.nome.value.length < 4){
				alert("Preencha corretamente o nome!");
				document.form1.nome.focus();
				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();
				return false;
			}
			
			if(document.form1.assunto.value == ""){
				alert("Preencha corretamente o assunto!");
				document.form1.assunto.focus();
				return false;
			}
			
			if(document.form1.assunto.value.length < 4){
				alert("O assunto deve conter mais de 4 caracteres!");
				document.form1.assunto.focus();
				return false;
			}
			
			
			if(document.form1.textomens.value == ""){
				alert("Preencha corretamente o campo mensagem!");
				document.form1.textomens.focus();
				return false;
			}
			
			
			if(document.form1.textomens.value.length < 50){
				alert("A mensagem deve conter no mínimo 50 caracteres!");
				document.form1.textomens.focus();
				return false;
			}
			return true;
		}