
function showLoading(){
	document.getElementById("loading").style.display = "block";
}

function hidLoading(){
	document.getElementById("loading").style.display = "none";
}
