var fDesc=new Array();
fDesc[1] = "airplanes, the improvement of the multiplayer support , including the possibility of two players flying a single airplane, and the occupation of the control tower. The 11.0 version brings some improvements and enhancements to the already successful flight simulator.";
fDesc[2] = "creating your own virtual page flipping e-Books. This program could be useful for authors or publishers. You can make use of this free trial period which gives you access to the full end-user product, as well as a severe security system which protects your work.";
fDesc[3] = "expenditures, the program will allow you to keep track of your budget. You will then be able to better understand where did your money go, and plan where to save money.";
fDesc[4] = "own family tree. The program is extremely easy-to-use. For creating your own family tree just add special items that designate members of your family and relatives onto canvas and define associations between them.";
fDesc[5] = "automated. Using Setup Studio and silent installations saves a significant amount of your time and effort.";
fDesc[6] = "slowing down its performance. The primary aim of Memory Zipper is to optimize the memory management in the personal computer and ensure that the system memory is used effectively, resulting in better performance of the personal computer.";
fDesc[9] = "account of your weariness. The program keeps track of the time you spend on the computer.";
fDesc[12] = "that is exactly why so many people leave their CD projects unfinished. AutoRunner operates as a WYSIWYG Autorun shell editor allowing you design Autorun menus visually with maximum comfort. All you do is simply drag an object over your Autorun window and edit its properties! Download FREE trial version and try it yourself!";
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 = '...';
}
}