// FAQ's OPEN & CLOSE Script

function thumbnailPopUp_openCloseDivContent(divContentId, imgOpenId)
{
	var divContent = document.getElementById(divContentId);
	var imgOpen = document.getElementById(imgOpenId);
	if(divContent.style.display == 'none')
	{
		divContent.style.display = '';
		imgOpen.src = '../imgs/close.gif';
	}
	else
	{
			divContent.style.display = 'none';
			imgOpen.src = '../imgs/open.gif';
	}
}