var Last_Section = "Home";
function Show_Content(Section_Name)
{
	document.getElementById(Last_Section + "_Content").style.display = "none";
	document.getElementById(Last_Section + "_Link_Active").style.display = "none";
	document.getElementById(Last_Section + "_Link_Inactive").style.display = "block";
	
	document.getElementById(Section_Name + "_Content").style.display = "block";
	document.getElementById(Section_Name + "_Link_Active").style.display = "block";
	document.getElementById(Section_Name + "_Link_Inactive").style.display = "none";
	
	Last_Section = Section_Name;
}
