
function displayFormSection(formSection)
{
	document.getElementById(formSection).style.display = 'block';
}


function hideFormSection(formSection)
{
	document.getElementById(formSection).style.display = 'none';
}


/* Hide/Show Function Specific to the Homepage Bubbles */
function displayBubbleInfo ( bubbleId )
{
	//alert(dateSection);
	var bubbleArr = ['bubble1','bubble2','bubble3','bubble4','bubble5','bubble6','bubble7'];	
	
	for (var i=0; i<7; i++)
	{
		
		if (bubbleArr[i] == bubbleId)
		{	
			document.getElementById(bubbleArr[i]).style.display = 'block';
		}
		else
		{
			document.getElementById(bubbleArr[i]).style.display = 'none';	
		}
	}
}
