function ShowTab(name)
{
	for (index = 1; index <= 12; index++)
	{
		month	= document.getElementById("Month" + index);
		if (month.id == name) month.style.display = "";
		else month.style.display = "none";
	}
}
