var fDesc=new Array();
fDesc[1] = "of related words, with one-click look up in almost any Windows program. The database has over 150 000 root words.";
fDesc[2] = ", 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[7] = "high quality signal processing algorithms along with a continuous control of delay time. It features up to 9600 ms of delay time which depends on the internal sampling frequency.";
fDesc[8] = "its own set of rules and tile layouts. The entire game is set within a tropical theme, featuring lush graphics and a fresh, intriguing interface. Features a large dictionary, computer and multi-player opponents, high-scores, online help, demonstration mode, soundtrack, environmental sounds and effects.";
fDesc[9] = "appearing in the New Testament. This book has been considered as a classic during more than a century, and now you can download and use it for free.";
fDesc[10] = "letters or just for checking your spelling. Best of all it's free !";
fDesc[11] = "game. Thanks to its excellent 3D graphics, you will get a pleasant and challenging experience by playing against your friends or the computer.";
fDesc[12] = "generate started puzzles that you have to finish with the letters given or start one from scratch. This will allow you to solve many word puzzles that are often found in magazines or newspapers and surprise your family or friends.";
fDesc[13] = "makes combination of letters and provides a list with the possible words. It even enables you to select up to four keys letters, which are the ones that must be in every word.";
fDesc[14] = "of its kind and is still used today. The module presents the definition of Hebrew words used in the Bible, as well as their use and context. You can have this important work by ordering the free CD at the developer's site.";
fDesc[15] = "lexicon, 20,000 topics,100,000 references, 15,000 comments, a note pad, highlighting, red lettering, compare gospel stories, side by side B...";
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 = '...';
}
}