var fDesc=new Array();
fDesc[1] = ", the person in charge of carrying out the strategies that will lead to a successful election. With a quite satirical perspective on political life, the game entertains at the time it analyses the political machinery setup during a campaign of this dimension.";
fDesc[2] = ", the club's finances, user defined reports and much more. Serves as a tool for the club's officers.";
fDesc[3] = "and sentences. Additional lessons can be added easily by typing or by download. Inludes Microsoft Agent.";
fDesc[6] = ", reports, queries, import/export. Complete yet VERY easy. Upgradable - great for growing nonprofits.";
fDesc[8] = "software gives you an easy way to manage, track, and organize data of a small fundraising organization.";
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 = '...';
}
}