var fDesc=new Array(); fDesc[0] = "QuickBible is software featuring the New American Standard Bible (NASB) translation. It is a basic, light program with several useful features. First, using the Read feature, you can find quickly any text of the Bible by simply choosing the chapter and typing the chapter and verse. The program will find the verse and highlight its number so you can identify it easily. Next we have the Search feature, which lets you find up to three words in the same phrase; for example, if you want to search a phrase but just remeber two or three words of it, you can search them jointly so the exact phrase would appear. Lets say that you want to find the verse where Jesus multiplies the fish and bread; you can search these three terms: "Jesus", "fish" and "bread"; the program would search the entire Bible and would find the exact Bible quote, which is John 21:13: "Jesus came and took the bread and gave {it} to them, and the fish likewise."
The program also has a Copy selected option, which lets you copy any given text for pasting it into another application, such as a text processor. Also, you can modify the size of the text for reading it more easily. In sum, this is a very simple and easy-to-use program for those who only want to read and search the Holy 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 = ''; } }