var fDesc=new Array();
fDesc[1] = "the prayers, in other words is an accountant assistance, a timer and agenda in order to keep a schedule for the prays. It has multiple functions and audio guides to not loose the track of the prayers.";
fDesc[2] = "game of historical empire building in which the player builds an empire from scratch. All full-time standard game starts in 4000 BC with a single settler, to build the first city, and an explorer or a warrior.";
fDesc[3] = ", 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[4] = "you to the sacred places of the Muslims. Probably you have heard of Mecca and the Kabbah, the place where you are supposed to go at least once in your life if you are a Muslim";
fDesc[5] = "mysteries, creeds, and prayers you have to pray in a rosary. It also tells you something about the day you are living and what your prayers are to be, giving you a full explanation about why you are praying.";
fDesc[6] = "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.";
fDesc[7] = ", Islam, Hinduism and Zoroastrism. It includes books such as the Bhagavad Gita, The Eightfold Path and the Q'uran, as well as a powerful Search feature and printing options.";
fDesc[8] = "with cross-references to the Bible itself and to other commentaries and books. These cross-references are presented as hyperlinks, so you can click on them for reading the full text.";
fDesc[9] = "Testament and Greek for the New one. It leverages all the features included in BibleMax, such as Search, Copy-Paste, and so on. This software is ideal for scholars, clerics and laypersons interested in reading the Bible in its original languages.";
fDesc[10] = "quickly find any verse of the Bible, and to search up to three different words in the same phrase. Also, it has copy and increase/decrease font size capabilities.";
fDesc[11] = "geometry which is said to be present in light, music, and, well, life. The application allows you to somehow create those geometrical patterns by simply modifying certain values and creating oscillations.";
fDesc[13] = "contains six different English translations of the Bible, and more than 400 important works of religions such as Buddhism, Islam, Christianity, Judaism and Hinduism.";
fDesc[14] = "studying purposes. As all BibleMax Bible modules, this one takes advantage of the features available, like commentaries and references.";
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 = '...';
}
}