var fDesc=new Array();
fDesc[5] = "Counter 1.2 offers to use computer for dropping smoking. It is a small program with a friendly interface that can really improve your motivation.";
fDesc[8] = "scholars working directly from the texts in the Hebrew, Greek, and Armaic texts. The motivation for the creation of this version of the Bible came from a new generation of believers in today’s world and the changing English language.";
fDesc[11] = "emailing system created exclusively for MLM businesses.Maintain good relationships with your prospects and affiliates with an automatic reminder system.";
fDesc[12] = "famous authors, politicians and sports performers. The screensaver has many customizable features, like music or transition effects; and allows you to create your own playlists and hide/show the clock and the calendar. Best of all, it is absolutely free.";
fDesc[13] = "effective four-quadrant approach to prioritizing tasks. It helps to set goals and pushes you to achieve them.";
fDesc[14] = "developers of Diet Buddy you can use your computer in a struggle for a great body now. This application gives you all statistics about the weight losing process.";
fDesc[15] = "you about 30 hours to complete the course. It consists of 100 entertaining sessions with the guaranteed result.";
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 = '...';
}
}