function toggle(idName, idNum, totalItems)
{
	// Close all but the current selection by default
	for(var i=1; i<=totalItems; i++)
	{
		var c = document.getElementById(idName + i + "Content");
					
		if (i != idNum && c != null && c.style.display != 'none')
		{
			c.style.display = 'none';
		}
	}
				
	// Get the current selection content and check its display style
	var vc = document.getElementById(idName + idNum + "Content");
								
	if (vc.style.display == 'none')
	{
		// Expand
		vc.style.display = 'block';
	}
				
	return false;
}

function teamTypeSelect(selectobj)
{
	var strLength = '';
	if(selectobj.options[selectobj.selectedIndex].value == 'Family') { toggle('t', 1, 4); }
	else if(selectobj.options[selectobj.selectedIndex].value == 'Corporate') { toggle('t', 2, 4); }
	else if(selectobj.options[selectobj.selectedIndex].value == 'School') { toggle('t', 3, 4); }
	else if(selectobj.options[selectobj.selectedIndex].value == 'Organization') { toggle('t', 4, 4); }

}