function validarCampos() {
	if (document.getElementById("contact").value.length == 0) {
		alert("O campo \"Nome\" é obrigatório.");
		document.getElementById("contact").focus();
		return false;
	}
	
	if (document.getElementById("email").value.length == 0) {
		alert("O campo \"E-mail\" é obrigatório.");
		document.getElementById("email").focus();
		return false;
	}
	
	if (document.getElementById("fone_ddd").value.length == 0) {
		alert("O campo \"Fone\" é obrigatório.");
		document.getElementById("fone_ddd").focus();
		return false;
	}
	
	if (document.getElementById("fone_num").value.length == 0) {
		alert("O campo \"Fone\" é obrigatório.");
		document.getElementById("fone_num").focus();
		return false;
	}
	
	if (document.getElementById("destino").selectedIndex == 0) {
		alert("O campo \"Destino\" é obrigatório.");
		document.getElementById("destino").focus();
		return false;
	}
	
	if (document.getElementById("subject").value.length == 0) {
		alert("O campo \"Assunto\" é obrigatório.");
		document.getElementById("subject").focus();
		return false;
	}
	
	if (document.getElementById("message").value.length == 0) {
		alert("O campo \"Mensagem\" é obrigatório.");
		document.getElementById("message").focus();
		return false;
	}
	
	return true;
}
