function InitLoading(){
    var body = document.getElementsByTagName("body");
    if(body[0]){
        //<div id="loading"><span>Loading...</span></div>
        var loading = document.createElement('div');
        loading.style.display = "none";
        var span_loading = document.createElement('span');
        body[0].appendChild(loading);
        loading.id = "loading";
        loading.appendChild(span_loading);
        span_loading.appendChild(document.createTextNode("In caricamento..."));
    }
}
function onLoaded(){
	document.getElementById("loading").style.display = "none";
	document.getElementById("ricercaComune").style.visibility = "visible";
	//window.location.href = window.location.href.split('?')[0];
	//alert(document.URL.match(/\?^/gid+));
}
function onLoading(){
	document.getElementById("loading").style.display = "block";
	document.getElementById("ricercaComune").style.visibility = "hidden";
}


