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] = "Local TV, Internet TV, World TV, Live TV or Satellite TV from any country in the world. It enables you to watch various international TV programs, news, entertainment, and so on.";
fDesc[3] = "local TV channels or dozens of countries without the need to be there. The program presents many channels with different sports, religious events, news, scientific programs, financial reports, entertainment and more. Best of all, it is completely free.";
fDesc[4] = "under the direction of Sid Meier at Firaxis Games studies and Firefly Studios. This game is about building cities along the history of Rome and bringing them to their splendour.";
fDesc[5] = "religious and ethnic violence a joint force of western countries is coming down to the country to control the situation. The game can be played online with up to 150 players or you can play it on LAN with about 64 players.";
fDesc[6] = "ensuring no important dates is missed out. It is very user-friendly as users are free to modify the content or style of the calendar.";
fDesc[7] = "community, as well as for managing your regular, day-to-day events. Vaishnava Reminder is a free tool for life with compatibility with most of the windows-based operating systems.";
fDesc[8] = "language, or download any of the free dictionaries available. There are more than 241 dictionaries in 80 different languages, including bilingual dictionaries, encyclopedic dictionaries, phrase dictionaries, religious dictionaries, audio pronunciation files, and many, many more.";
fDesc[10] = "interpretative and/or ideological biases. As most of the BibleMax modules, this one interacts fully with the commentaries and references installed in your core program.";
fDesc[11] = "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[13] = "connection. However, it contains over 1.5 hours of royalty free video loops and effects!";
fDesc[14] = "animated scenes of little angels sitting on a cloud or playing around in a beautiful garden. But the part that amazed me and I liked most is a scene of a church. You look up at one of the stained glass windows and one of the angels in the image starts to come alive!";
fDesc[15] = "program works between dates 1582-2399.";
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 = '...';
}
}