function validaContato() { 

	//Initialise variables
	var errorMsg = "";

	//Check for a first name
	if (document.formContato.nome.value == ""){
		errorMsg += "\n\u00bb Nome";	
	}
	if (document.formContato.cidade.value == ""){
		errorMsg += "\n\u00bb Cidade";	
	}
	if ((document.formContato.telFixo.value == "") && (document.formContato.telCelular.value == "") && (document.formContato.telComercial.value == ""))  {
		errorMsg += "\n\u00bb Preencha pelo menos 1 telefone";	
	}	
	if ((document.formContato.email.value == "") || (document.formContato.email.value.length > 0 && (document.formContato.email.value.indexOf("@",0) == - 1 || document.formContato.email.value.indexOf(".",0) == - 1))) { 
		errorMsg += "\n\u00bb E-mail";
	}	
		if (document.formContato.conheceu.value == ""){
		errorMsg += "\n\u00bb Como nos conheceu?";	
	}
	if (document.formContato.assunto.value == ""){
		errorMsg += "\n\u00bb Assunto";	
	}
	if (document.formContato.comentario.value == ""){
		errorMsg += "\n\u00bb Coment\u00e1rio";	
	}
			
	if (errorMsg != ""){
		msg = "Os seguintes campos ficaram em branco ou foram preenchidos incorretamente.\n";
		msg += "_________________________________________________________________________";
		
		fimmsg = "\n_________________________________________________________________________\n";
		fimmsg += "Por favor, preencha novamente esses campos e envie novamente.\n";
		
		errorMsg += alert(msg + errorMsg + fimmsg + "\n\n");
		return false;
	}

	return true;
}