function faqexpand(eid) { d = document.getElementById(eid); if (d.style.display == "none") { d.style.display = "inline"; return; } d.style.display = "none"; }