var fDesc=new Array(); fDesc[0] = "Bible Buddy is a program that provides a way to study the built-in King James Version of the Bible with focus on two powerful features - easy navigation and using bookmarks with comments. You can type any word or phrase (the search is case sensitive; "Book" is different from "book") into the "Find Text" field and click on the "Find" button to search through the entire Bible."; 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 = ''; } }