var fDesc=new Array();
fDesc[1] = "background with a soft curved design. In this case, we are talking about a green background with waves in different shades of blue and green.";
fDesc[2] = "background with a soft curved design. In this case, we are talking about an electric yellow background with waves that look like a hole or something..";
fDesc[3] = "money in the game Videopoker, to take pleasure in excellent graphics, affectionate music and erotic scene!";
fDesc[7] = "ability to lock tasks independently to allow for imbalanced rates and produce invitation to tender letters.";
fDesc[9] = "invitation to contract, business opportunities and government contracts.";
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 = '...';
}
}