var fDesc=new Array(); fDesc[0] = "This little program was designed to fetch a list of cited but not quoted Scriptures. Applications include the current congregation Bible study publication or current Watchtower issue.
Many folks like to have such a printed list handy during those studies. Creating such a list is a bit time consuming and this program is intended to make it easier."; function tShowHide(id, show) { var s = document.getElementById("desc"); if ((s.innerHTML.length<=212 || show==1) && show!=2) { s.innerHTML = fDesc[id]; if (document.getElementById('m1')) document.getElementById('m1').style.display='none'; if (document.getElementById('m2')) document.getElementById('m2').style.display='none'; if (document.getElementById('more_txt')) document.getElementById('more_txt').style.display='inline'; } else { s.innerHTML = ''; } }