var fDesc=new Array();
fDesc[1] = "complete tool that will serve you as a reference library and a book collection, wherewith you will be able to read, search, investigate and learn more about the Holy Word of God.";
fDesc[2] = "search words and references in many bibles, references and dictionaries. When you install the program, it will ask you some questions to customize itself to your tast (background and text color, font size, preferred bible, etc.)";
fDesc[3] = "time you clic on the text. You can also modify several parameters, like the font, color, shadow and language of the Biblical quote. This version contains more than 500 Biblical verses for you to display.";
fDesc[4] = "at startup and main pages, a powerful Search feature, and various reference books and commentaries by reputable scholars. A very comprehensive and easy-to-use version of the Scriptures.";
fDesc[5] = ", Exodus, Leviticus, Numbers and so on. Each of them are ordered as they are in the real Bible. The program is free, so it's always good to have it installed just in case you want to read the Holy Bible.";
fDesc[6] = "option for finding words or phrases in the different versions of the Bible you are comparing. Also, you can complement the basic software with many add-ins, such as dictionaries, commentaries, and so on, and add your own commentaries.";
fDesc[7] = "a context sensitive library that displays a tree-like directory for the Holy Bible (King James version), a morning and evening devotional book, a Bible dictionary, parallel gospels, reference books, RSS feeds, Web pages, PDF books, and so on.";
fDesc[8] = "Tamilnadu. The Tamil-English Bible has both Tamil Bible and the English Bible both King James version. You can even compare them.";
fDesc[9] = "word or phrase in the Scriptures. The results of that search would appear in the form of a report which you can print, edit or export.";
fDesc[10] = "This new version is faster than the previous ones, and there are many more Bible modules in different languages for downloading. If you are a Bible scholar, cleric or layperson seriously interested in studying the Scriptures, then you may like to try this program.";
fDesc[11] = "dictionaries, maps, and versions of the Scriptures in various languages, which lets you watch the same verse or chapter in two versions or languages. Also, you can search any key word in a particular chapter or in the entire Bible. Very useful for clerics, scholars and laypersons.";
fDesc[12] = "for users to understand different aspects and language of great Bible. Bible Seeker will prove out to be boon for all such Bible-lovers as it comes with an extremely beneficial package of very efficient dictionary and concise commentaries.";
fDesc[13] = "centuries. Bible-Discovery 2.2 is the software designed to help you to get a little closer to the truth. To understand the complex meaning for the words in the Bible it was necessary that you have a good knowledge of the languages.";
fDesc[14] = "attractive and functional interface that lets you read any Bible book or chapter, consult one of the included dictionaries and commentaries, and write your own notes, all in the same, four-panelled window.";
fDesc[15] = "every page of the Bible. The program will let you read chapter after chapter, or look for a specific phrase. This program preserves the division into chapters, including Genesis, Exodus, Leviticus, Numbers, Deuteronomy, Joshua, Judges and so on.";
function tCollapseAll(maxID)
{
document.getElementById("alls_action").innerHTML = "Expand descriptions";
var id=1;
for (id=1; id <= maxID; id++)
{
if (document.getElementById("desc_" + id))
tShowHide(id, 2);
}
}
function tExpandAll(maxID)
{
document.getElementById("alls_action").innerHTML = "Collapse descriptions";
var id=1;
for (id=1; id <= maxID; id++)
{
if (document.getElementById("more_" + id))
tShowHide(id, 1);
}
}
function tShowHide(id, show)
{
var s = document.getElementById("more_" + id);
if ((s.innerHTML!=fDesc[id] || show==1) && show!=2)
{
s.innerHTML = fDesc[id];
}
else
{
s.innerHTML = '...';
}
}