﻿// JavaScript Document
var glossaryId;function toggleQuestion(questionID){var div=$(questionID),secNum=questionID.substr(0,4);if(div.style.display=="none"||div.style.display==""){div.style.display="block";pingOmniture("FAQ: "+questionID)}else{div.style.display="none";$("chk"+secNum).checked=false}}function toggleAllQuestions(ansList,secNum){var answerList=ansList.split(","),style="none";if($(secNum).checked){style="block";pingOmniture("FAQ: view all answers; "+secNum.substr(3))}for(var i=0;i<answerList.length;i++)$(answerList[i]).style.display=style}function toggleGlossary(termID){var div=$(termID);if(glossaryId!=null&&glossaryId!=termID){var glossaryDiv=$(glossaryId);if(null!=glossaryDiv)glossaryDiv.style.display="none"}if(div.style.display=="none"||div.style.display=="")div.style.display="block";else div.style.display="none";glossaryId=termID}