function GetContent( ContentID ){

	//var BackObj = document.getElementById( "Back" );
	//var SubmitFormObj = document.getElementById( "SubmitForm" );
	var LoadingObj = document.getElementById( "Loading" );

	LoadingObj.style.display = "block";
	//BackObj.style.display = "none";
	//SubmitFormObj.style.display = "none";

	document.getElementById( "Content" ).innerHTML = "";

	AjaxURL = "contents/"+ContentID+".html";
	advAJAX.get({
		url: AjaxURL,
		onSuccess : function(obj) {
			Result = obj.responseText;
			document.getElementById( "Content" ).innerHTML = Result;
			document.location = "#top";
			document.location = "#"+ContentID;

			LoadingObj.style.display = "none";
			/*
			if( ContentID == "Main" || ContentID == "FormSending" ){
				BackObj.style.display = "none";
			}
			else{
				BackObj.style.display = "block";
			}

			if( ContentID == "Form" ){
				SubmitFormObj.style.display = "block";
			}
			else{
				SubmitFormObj.style.display = "none";
			}
			*/
			//alert( Result );
		}
	});
}
