var fDesc=new Array();
fDesc[1] = "Once ImageXtender is installed, you can view images of most formats in 3 standard Windows modes - Preview, Thumbnails and Filmstrip";
fDesc[2] = "Solve problem levels in the challenging puzzle mode. Featuring 100 unique 3D levels and atmospheric DirectX visuals.";
fDesc[4] = "in the group of helping hands to the computer users across the world. Home Office Publisher® is a magical tool to ensure that a lay man or a novice user of computer can create personalized business cards, letterheads, brochures and labels.";
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 = '...';
}
}