function txtFechamento(tipo) {
	
	var ajax = openAjax();
	var recipiente = gE('boxConteudo');
	carregando();
	
	ajax.open('GET', 'bib_ajax/palestras.php?function='+tipo, true); 
	
	ajax.onreadystatechange = function() {
		if (ajax.readyState == 4) {
			if (ajax.status == 200) {
				document.body.style.cursor = 'default';
				recipiente.innerHTML = ajax.responseText;
			}
		}
	}

	ajax.send(null);
	
}

function carregando() {
	var recipiente = gE('boxConteudo');
	recipiente.innerHTML = "<div id=\"loading\"><img src=\"rio/imagens/indicator_lite.gif\" width=\"24\" height=\"24\" /></div>";
}

