function showFaq(idString)
{
	theFaq = document.getElementById(idString);
	
	if (theFaq.style.display == "none")
	{
		theFaq.style.display = "block";
	}
	else
	{
		theFaq.style.display = "none";
	}
}