var fDesc=new Array();
fDesc[1] = "program features an unattractive user interface, which looks old and old-fashioned, you can create complete and fully customized calendars for multiple uses.";
fDesc[2] = "simple, engaging language which would be useful for every person interested in studying the Bible. Also, this module takes advantage of all BibleMax software features, like direct hyperlinks to the Bible verses mentioned in Fausset's work.";
fDesc[3] = "from Greek and Hebrew texts, so it is one of the most authoritative versions of the Scriptures. This software will be very useful for scolars, clerics or laypersons interested in the study of the Holy Bible.";
fDesc[4] = "shamrocks float and leprechauns dance around your screen.";
fDesc[5] = "won whenever \"5 pots of gold appear \" anywhere on the reels. You have the option to select 8, 12, or 15 free spins. During the freegames , if 5 Scattered symbols appear The Jackpot is won.";
fDesc[12] = "beautiful and animated screensaver? Just have a look at the Animated Screensaver \"Irish Spring\". This Screensaver devoted st. Patrick's Day. Saint ...";
fDesc[13] = "and animated screensaver? Just have a look at the Animated Screensaver \"Irish Pub\". Today all of people on holiday parade devoted st. Patrick's ...";
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 = '...';
}
}