function carregando(destino, retorno){
	if(destino != ""){
		destino = document.getElementById(destino);
	}
}

function concluido(destino, retorno){
	if(destino != ""){
		if(destino == "preloader"){
			var body = document.getElementsByTagName("body");
			if(body[0]){
				destino = document.createElement("div");
				destino.setAttribute("id", "preloader");
				destino.style.height = body[0].clientHeight + "px";
				body[0].appendChild(destino);
				
				var p = document.createElement("p");
				p.innerHTML = "Carregando dados...";
				destino.appendChild(p);					
			}
		}		
	}
}