var fDesc=new Array();
fDesc[1] = "James Version. The screensaver is fully customizable and you can use it for reading and learning from the anicent Biblical wisdom while taking a break during your workday.";
fDesc[2] = "the font used and the background image by adding an image of your own. Also, the program can be integrated to Microsoft Outlook, Outlook Express and other e-mail clients for adding the Biblical quote of the day to your e-mails.";
fDesc[3] = "important and knowledgeable exegetical works of all time, and now you can download and install it as an add-in for BibleMax software. If you are a scholar, cleric or layperson interested in deepen your Biblical knowledge, don't miss this module.";
fDesc[4] = "preacher and evangelist. The program contains a daily meditation on the Scriptures, as well as a concluding prayer. You must download and install BibleMax software before running this module.";
fDesc[5] = "all the features of BibleMax, like its Search capabilities and Bible quotes marked as hyperlinks which makes it easier to display the corresponding Bible text.";
fDesc[6] = "information source about Biblical and Bible-related terms. It contains more than 9,000 cross-referenced and cross-linked entries about the most significant words, terms, places and people appearing in the Scriptures, complete with their historical, religious and linguistic contexts.";
fDesc[7] = "easily add Bible verses, and even entire chapters and books, to your blog entries. You can even add a link to the Internet site where the readers can read and even listen to the quote you posted. A must-have to bloggers who want to add Biblical content to their blogs.";
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 = '...';
}
}