var HTMLCarregando  = '<span> <img src="adm/imagens/carregando.gif" width="16" height="16"> </span>';

function enviaNews(div, divErro) {
	
	var nome = document.getElementById("nome").value;
	var email = document.getElementById("email").value;
	
	document.getElementById(div).innerHTML = HTMLCarregando;
	
	xajax_enviaNews(nome, email, div, divErro);
}

function enviaContato(div) {
	
	document.getElementById(div).innerHTML = HTMLCarregando;
	
	xajax.call('enviaContato', [xajax.getFormValues('frmContato')]);
}

function voltar() {
	history.back();
}

function irPara(url) {
	location.href = url;
}

function ocultarCampo(campo) {
	document.getElementById(campo).style.display = "none";
}
