var fDesc=new Array();
fDesc[1] = "off for fun with Airport Mania! Land planes, unload, and return to the skies in 8 amusing airports. Avoid delays, keep your planes in good repair, and get to the gate on time to keep things running smoothly.";
fDesc[2] = "Christmas tree in the middle of a room. It shows a close-up view of its branches. Every branch is beautifully decorated with stars, angels, bells, and more.";
fDesc[4] = "shows a snowy landscape with an igloo in the center of the scene. You will be able to watch as some little girls come out of the igloo to play in the snow. And you will listen to their giggles and laughter too!";
fDesc[5] = "animation is really well done and includes a 360ยบ perspective of the place, allowing us to have a great, relaxing view of the scenery and the surrounding mountains.";
fDesc[7] = "feeling the cold. You will be able to see one of the most beautiful scenes you can find in Mother Nature: a waterfall.";
fDesc[10] = "visualization. They allow fast complex signal manipulations with zero lines of program code. Free for non-commercial use.";
fDesc[13] = "MPEG/demuxed M2V for DVD authoring.";
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 = '...';
}
}