function closebox(id) {
	      $("#centeredbox").fadeOut("slow");
	      $("#centeredbox2").fadeOut("slow");
		  $("#loadingbox").fadeIn("slow");
		  $("#loadingbox2").hide();
}
function openbox(id) {
		$("#centeredbox").fadeIn("slow");
		$("#centeredbox2").fadeIn("slow");
		$.get("getinfo.php?page="+id, function(data){
			$("#loadingbox").hide();
			$("#loadingbox2").html(data).fadeIn("slow");
		});

}
function changebox(id) {
		  $("#loadingbox").fadeIn("slow");
		  $("#loadingbox2").hide();
		$.get("getinfo.php?page="+id, function(data){
			$("#loadingbox").hide();
			$("#loadingbox2").html(data).fadeIn("slow");
		});

}
function submitbox(id,get) {
		  $("#loadingbox").fadeIn("slow");
		  $("#loadingbox2").hide();
		$.post("getinfo.php?page="+id+get, $("#form"+id).serialize(), function(data){
			$("#loadingbox").hide();
			$("#loadingbox2").html(data).fadeIn("slow");
		});

}

function openurl(url) {
		window.location.href=url;
}


