function valida_contato() {
	
	if (document.form.nome.value == "") {
		alert("Informe seu nome!");
		document.form.nome.focus();
		return false;
	}

	if (document.form.email.value == "") {
		alert("Informe seu e-mail!");
		document.form.email.focus();
		return false;
	}
	
	if (document.form.telefone.value == "") {
		alert("Informe o telefone!");
		document.form.telefone.focus();
		return false;
	}
	
	if (document.form.txt_uf.value == "0") {
		alert("Selecione o estado!");
		document.form.txt_uf.focus();
		return false;
	}


	if (document.form.municipio.value == "") {
		alert("Informe o municipio!");
		document.form.municipio.focus();
		return false;
	}


	if (document.form.msg.value == "") {
			alert("Informe a mensagem!");
			document.form.msg.focus();
			return false;
		}

}
