var fDesc=new Array();
fDesc[1] = "complete tool that will serve you as a reference library and a book collection, wherewith you will be able to read, search, investigate and learn more about the Holy Word of God.";
fDesc[2] = "factions representing the powers of the Mediterranean. Your scenario is Europe in middles ages with a lot of political intrigues and the influence of the Church. In that time, The church controlled the international political issues and has total power.";
fDesc[3] = "following the orders of a mysterious agency. The game includes more than 20 missions in all, which you'll play in a linear order, one after the other.The graphics of this game are great enough and particularly the sound has been improved so as to make it really enjoyable.";
fDesc[4] = "Scritures and powerpoint presentations with the help of a video projector. It is a valuable tool that allows the user to save time while preparing a more appealing worship session.";
fDesc[5] = "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[6] = "scenario, is of course Europe, in late middle age and until the Napoleonic Wars 1819, this is a period full of changes. You will have to run a country in every aspect, economy, diplomacy, commerce and so on. In some cases the best option is to take some time to make a good decision.";
fDesc[7] = "platforms. It puts the power of enhanced worship presentation in your hands. LiveWorship's graphical interface is simple, yet powerful. It's as easy as drag, drop and Worship! It's non-linear control uses slide thumbnail images that display with one click. A powerful database keeps all of your song lyrics, backgrounds, Bible translations, video, and music at the touch of your fingertips. LiveWorship allows church volunteers to build presentations in minutes. You can edit presentations \"on-the-fly\" so you never have to interrupt your presentation to add slides, change slides, fonts, backgrounds, and more. LiveWorship comes loaded with popular Bible translations like the NIV, NRSV, KJV, the Message and many others so you can reach your church in compelling ways! Technology should never be a distraction to worship. Let LiveWorship move you beyond the technology!";
fDesc[8] = ", administrative committees, small group Bible study groups, and spiritual gifts. Plus a prayer list, church calendar, and staff calendar.";
fDesc[9] = ", sermons, church personnel, music programs, talent survey and more. User defined fields.";
fDesc[10] = "track membership, visitors, activities, equipping, pastoral care, meetings, library items, and contributions.";
fDesc[11] = "acquired wings. There's Light coming through the windows and the open doors. His kingdom is near!";
fDesc[12] = "version of the Bible in two different English translations, as well as other important and interesting documents like Encyclicals and Homilies from the last Popes, the Code of Canon Law, and many more.";
fDesc[13] = "software gives you an easy way to manage, track, and organize data of a small church.";
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] = "church matters. Now includes a visual report builder to let you modify the sample reports and create reports from scratch. Much more.";
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 = '...';
}
}