// Hide/Show the more info sections
function MoreInfo( section )
{
	var cntrl = 'spnMoreInfo' + section;
	
	if (document.getElementById(cntrl).style.display == 'none')
	{
		document.getElementById(cntrl).style.display = 'block';
	}
	else
	{
		document.getElementById(cntrl).style.display = 'none';
	}
}
