var fDesc=new Array();
fDesc[1] = "and information. It is an exquisite tool to build a detailed family tree. It permits you to create and store an ancestral database with individual data entering for each ancestor with demographic information, notes, references and pictures.";
fDesc[2] = "phrase in the Bible. Its interface is very intuitive and easy-to-use. Also, the program has many customizable features, making your Bible-reading experience a more personal one.";
fDesc[3] = "complete list of books, or only the Old or the New Testament, or several other categories like the Books of Moses, Prophets, and so on. Also, you can download many versions and translations of the Scriptures, as well as dictionaries and other texts.";
fDesc[5] = "very easy to install and use. Don't just decorate your house, decorate your pc desktop too!";
fDesc[6] = "Standard Version of 1901, The Biblia Hebraica Stutgartensa Old Testament, and the Greek Majority Text New Testament. Words of Christ are in red text.";
fDesc[7] = "emotional of all the celebrations of the year. With a gorgeous animation and relaxing music, this screensaver is perfect to decorate your desktop on those special days, as it captures perfectly the spirit of peace and happiness of Christmas.";
fDesc[8] = "products. They have developed softwares like calendar for windows, bible study software and many more to equip and edify Christians. This time they have created a wonderful and interesting quiz program to guide a person with different statements of Christianity,";
fDesc[9] = "fill your screen with the spirit of Christmas. Friends Christmas Clock Screensaver is a free option to change the look of your desktop and bring the atmosphere of peace and joy of this celebration to your computer.";
fDesc[10] = "calendar to obtain the equivalent date in the other calendar. The Gregorian calendar is based on the birth year of Jesus Christ. It was introduced in A.D. 1582 by Pope Gregory XIII. It recognizes two eras: B.C. (Before Christ) and A.D. (Anno Domini). A year has 12 months with 28-31 days each, totaling 365-366 days. The Islamic or Hijri lunar calendar is based on the Hejira (migration of Muhammad from Mecca in A.D. 622). It recognizes one era: A.H. (Anno Hegirae). A year has 12 months with 29-30 days each, totaling 354-355 days.";
fDesc[14] = "know, Christmas is a holy day devoted to the reminiscences about the birth of Jesus Christ, which is celebrated annually on December 25. During ...";
fDesc[15] = ", similar to the real one, hand-painted with a lot of detail. Inside, you will see donkeys, sheep, an owl, and other animals that used to live in the stable, in full animation.";
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 = '...';
}
}