function validaFale(){

	var retVal = true;

	if(document.frm_fale.nome.value==""){
		alert("O campo Nome precisa ser preenchido.");
		document.frm_fale.nome.focus();
		retVal = false;
	}
	
	if(retVal && document.frm_fale.endereco.value==""){
		alert("O campo Endereco precisa ser preenchido.");
		document.frm_fale.endereco.focus();
		retVal = false;
	}
	
	if(retVal && document.frm_fale.telefone.value==""){
		alert("O campo Telefone precisa ser preenchido.");
		document.frm_fale.telefone.focus();
		retVal = false;
	}
	
	if(retVal && document.frm_fale.email.value==""){
		alert("O campo Email precisa ser preenchido.");
		document.frm_fale.email.focus();
		retVal = false;
	}
	
	if(retVal && document.frm_fale.assunto.value==""){
		alert("O campo Assunto precisa ser preenchido.");
		document.frm_fale.assunto.focus();
		retVal = false;
	}
	
	if(retVal && document.frm_fale.mensagem.value==""){
		alert("O campo Mensagem precisa ser preenchido.");
		document.frm_fale.mensagem.focus();
		retVal = false;
	}
	
	return retVal;
}