function validarFofoca() {
	var nome   = document.getElementById("nome");
	var email  = document.getElementById("email");
	var cidade = document.getElementById("cidade");
	var fofoca = document.getElementById("fofoca");
	
	if (Trim(nome.value) == "") {
		alert("Informe o seu nome completo!");
		nome.focus();
		return false;
	} else if (!checkMail(email.value)) {
		alert("O email informado é inválido!");
		email.focus();
		return false;
	} else if (Trim(cidade.value) == "") {
		alert("Informe o nome da sua cidade!");
		cidade.focus();
		return false;
	} else if (Trim(fofoca.value) == "") {
		alert("Digite a sua fofoca!");
		fofoca.focus();
		return false;
	} else {
		return true;
	}
}