function openIt(faq) {
showIt = document.getElementById(faq);
if (showIt.style.display == "none") {
showIt.style.display = ""
} else {
showIt.style.display = ""
}
}

function closeIt(faq) {
showIt = document.getElementById(faq);
if (showIt.style.display == "none") {
showIt.style.display = "none"
} else {
showIt.style.display = "none"
}
}
