/**********************************************************************************
PAGINAÇÃO DE RESULTADOS
**********************************************************************************/

function MudaPaginaResultados(carregando,url) {	
	window.location = __URL__ + url;
}

function ToogleMenu(menuAtual)
{
	displayMenu = document.getElementById('menu_secao['+menuAtual+']').style.display;
	if (displayMenu == "none") {
		document.getElementById('menu_secao['+menuAtual+']').style.display = 'block';
	} else {
		document.getElementById('menu_secao['+menuAtual+']').style.display = 'none';
	}
}

function CarregaAlertas(objDestino)
{
	if (document.getElementById(objDestino)) {
		ExecutaAjax(__URL__ + '__loadfiles/site/home/alertas.load.php',objDestino,'conteudoPerfil');
	}
	
	//setTimeout('CarregaAlertas("' + objDestino + '")', 4000);
}