var fDesc=new Array();
fDesc[1] = "attractive and functional interface that lets you read any Bible book or chapter, consult one of the included dictionaries and commentaries, and write your own notes, all in the same, four-panelled window.";
fDesc[2] = "engineers. These programs can be very expensive, as well as very difficult to learn, and very difficult to use. Easy Plan Pro is very easy to use and also is very easy to design and to draw.";
fDesc[3] = "it will create not only one, but as many screensavers you need using the images you prefer. Basically, the only thing you need to do is select the photos or directory you want, save your screensaver, and the software will immediately create it and save it in your hard disk.";
fDesc[5] = "last weekend? Through comparison you find the best areas for cleaning out your drive.";
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 = '...';
}
}