var fDesc=new Array();
fDesc[1] = "a few words in it. On top of that, users can download a number of other free dictionaries from the website and use them in conjunction with the application.";
fDesc[3] = "run via any kind of removable disk. What you need to do is, just install this My USB Menu software to your removable drive for opening any file of your choice and software will run automatically without having to search the drive for them.";
fDesc[4] = "Featuring 50 levels divided into 5 amazing worlds . Will you be strong enough to discover the hidden world ?";
fDesc[5] = "outstanding explosion ! Beautiful graphics, great musics, addictive gameplay and much more !";
fDesc[6] = "with hours of gameplay time. Old School shootem up fun for the whole family.. We recommend this game!!!";
fDesc[7] = "online like running a Virus scan. Why download a whimpy toolbar when you can have searchs, links, and tools!";
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 = '...';
}
}