﻿function loadPage(URL) {
	$("#loading_").show();
// alert("loadPage("+URL+")");
	$("#main").load(URL+" #page_content",function(response,status,xhr) {
		if (status == "error") {
			$("#main").html("<div align='center' style='margin:60px;padding:20px;border:solid 1px;'><h3>Sorry the page &quot;"+URL+"&quot; could not be loaded</h3><p><b>"+xhr.status+" "+xhr.statusText+"</b></p></div>");
		} else {
			ldeAll();
			if (typeof $.prettyPhoto != 'undefined') $.prettyPhoto.reload();
		}
		$("#loading_").hide();
	});
}

