

function do_BuscaSessoes()
{
	var l = getPosicaoElemento( 'btnBuscaSessoes' ).left - 35;
	var t = getPosicaoElemento( 'btnBuscaSessoes' ).top + 20;

	document.getElementById( 'caixa__escolha_sessao' ).style.left = l + 'px';
	document.getElementById( 'caixa__escolha_sessao' ).style.top = t + 'px';
	
	var status = document.getElementById( 'caixa__escolha_sessao' ).style.display;
	document.getElementById( 'caixa__escolha_sessao' ).style.display = ( status == 'block' ) ? 'none' : 'block';
}
