/**** FAQ ****/

function toggleFaqBox(questionId,questionTitle)
{
	var sFaqBoxName = 'faq-answer-' + questionId;

	var oFaqBox = getElement( sFaqBoxName );

	// if box is hidden then send a request to the server and count the number this question has been read
	if( oFaqBox.style.display != 'block' )
	{
		displayElement( sFaqBoxName );

		// This is a way to Track which questions get read the most
		if( typeof pageTracker != 'undefined' )
		{
			pageTracker._trackEvent('Frequently Asked Questions','Question Got Opened',questionTitle);
		}
	}
	// We are closing the box
	else
	{
		hideElement( sFaqBoxName );

		if( typeof pageTracker != 'undefined' )
		{
			pageTracker._trackEvent('Frequently Asked Questions','Question Got Closed',questionTitle);
		}
	}

	return false;
}