function showSection(sectionId)
	{
	if (document.getElementById(sectionId))	
		{
		document.getElementById(sectionId).style.display = "block";	
		}
	}
