function showMonth(monthId)
{
	open = document.getElementById('openMonth').value;
	if (open != "")
	{
		document.getElementById(open).style.display = 'none';
	}
	document.getElementById(monthId).style.display = '';
	document.getElementById('openMonth').value = monthId;
}

function selectDoll(link)
{
	document.location.href = link;
}