function loadPage(URL) { $("#loading_").show(); // alert("loadPage("+URL+")"); var u = URL.split('#'); // split anchor $("#main").load(u[0]+" #page_content",function(response,status,xhr) { if (status == "error") { $("#main").html("

Sorry the page ""+URL+"" could not be loaded

"+xhr.status+" "+xhr.statusText+"

"); } else { ldeAll(); if (typeof onLoadPage == 'function') onLoadPage(); if (u[1]) { // go to anchor document.location.hash = u[1]; } } $("#loading_").hide(); }); }