function validaForm()
{

	if(isVazio(document.fr_contato.txt_nome, 'Nome')) return false;
	if(!isEmail(document.fr_contato.txt_email)) return false;
	if(isVazio(document.fr_contato.txt_dddtel, 'DDD do Telefone')) return false;
	if(!isLenght(document.fr_contato.txt_dddtel, 'DDD do Telefone', 2)) return false;
	if(isVazio(document.fr_contato.txt_tel, 'Telefone')) return false;
	if(!isLenght(document.fr_contato.txt_tel, 'Telefone', 9)) return false;	
	if(isVazio(document.fr_contato.falarcom, 'Falar Com')) return false;
	if(isVazio(document.fr_contato.txt_cidade, 'Cidade')) return false;
	if(isVazio(document.fr_contato.txt_mensagem, 'Mensagem')) return false;
	
	return true;
	
}
