var fDesc=new Array();
fDesc[1] = ", create 2D presentations with LayOut, and more. It's easier to learn than other 3D modeling programs, which is why so many people are already using it.";
fDesc[2] = "and the instruction are clear and easy to understand. An old diary has been discovered. The problem is that most of its pages have been torn out. You must find the missing objects in the different rooms to unlock their doors and retrieve the missing diary pages.";
fDesc[3] = "with an advanced sampling engine. The result is an inspiringly fast and intuitively flexible sampler with exceptional sound quality.";
fDesc[4] = "This collection is called The Treasure of The Ages. Doors opened to show the great treasure to the people in the museum. Nobody would believe that The Treasure of The Ages had been stolen!! Now we are told to get the whole treasure back.";
fDesc[5] = "who require a program that gives them unlimited design options with professional tools they can use to create 2D technical, artistic, and mechanical drawings with which they can create 3D models.";
fDesc[6] = "against the Axis in different battles. You should control a soldier that carries different weapons, shooting to your enemies while walking through different scenarios, opening doors and avoiding to be hit.";
fDesc[7] = "Sketchup. With this component you access to multiple 3D models of architectural accessories to design your house of office. Just to name some, you’ll find sofas, windows and doors, laptops, illumination accessories and many more.";
fDesc[8] = "a passage that an archaeologist found under a tomb, with different doors and rooms. You must help to find the way to enter the different rooms and collect the treasures.";
fDesc[9] = "computer keyboard, CD drive doors and power-off button (only in Windows XP). When Toddler Keys is installed, it will sit on your system tray until you activate it.";
fDesc[10] = "shortcut, or via an icon in your system tray.";
fDesc[11] = "taken control of your town. You will have to find the keys that open the doors between levels, where you will fight against different frogs, in different environments, such as stables, general stores, saloons, and jails.";
fDesc[12] = "feel part of that strange and hard to understand world. You will be walking in that familiar long and white corridor, opening doors as you pass near them.";
fDesc[13] = "time. Choose from templates for a single-, double-, three-, or four panel decorative doors, specify the width and height of the door opening.";
fDesc[14] = "Unlimited profile system; Unlimited furniture system; Unlimited quantity of other components; Convenient and simple to use.";
fDesc[15] = "system; - Unlimited furniture system; - Unlimited quantity of other components; - Convenient and simple to use.";
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 = '...';
}
}