function valida() {
	var nome    = document.getElementById("edtnome");
	var email   = document.getElementById("edtemail");
	var cidade  = document.getElementById("edtcidade");
	var assunto = document.getElementById("edtassunto");
	var contato = document.getElementById("edtcontato");
	
	if (Trim(nome.value) == "") {
		alert('Campo "nome" é de preenchimento obrigatório!');
		nome.focus();
		return false;
	}
	else if (!checkMail(email.value)) {
		alert('Campo "email" preenchimento incorretamente!');
		email.focus();
		return false;
	}
	else if (Trim(cidade.value) == "") {
		alert('Campo "cidade" é de preenchimento obrigatório!');
		cidade.focus();
		return false;
	}
	else if (Trim(assunto.value) == "") {
		alert('Campo "assunto" é de preenchimento obrigatório!');
		assunto.focus();
		return false;
	}
	else if (Trim(contato.value) == "") {
		alert('Campo "contato" é de preenchimento obrigatório!');
		contato.focus();
		return false;
	}
	else {
		if (confirm("Confirma o envio do seu contato?")) {
			return true;
		} else {
			return false;
		}
	}
}