function ShowSection(SubMenuID)
{
	
	var strThisSectionID = "S" + SubMenuID;
	var strThisHeadingID = "M" + SubMenuID;


	
	for (intID=0;intID<6;intID++)
	{		
		strSectionID = "S" + intID;
		strHeadingID = "M" + intID;
		
		if (document.getElementById(strHeadingID))
		{				
			document.getElementById(strSectionID).style.display="none";
			document.getElementById(strHeadingID).className  = "ContainerTopCenterOff";
			
		};
		
	}

	if (document.getElementById(strThisSectionID))
	{
		document.getElementById(strThisSectionID).style.display="block";
		document.getElementById(strThisHeadingID).className  = "ContainerTopCenterOn";			
	}
}	

function ShowMoreInfo()
{
	if (document.getElementById("MoreInfo").style.display == "block")
	{
		document.getElementById("MoreInfo").style.display="none";
		document.getElementById("MoreInfoLink").style.display="block";
	}	
	else
	{
		document.getElementById("MoreInfo").style.display="block";
		document.getElementById("MoreInfoLink").style.display="none";
	}
}