var fDesc=new Array();
fDesc[1] = "resembles an aquarium with fish swimming and playing around. Having such a saver is so relaxing. When I stumbled upon Dream Aquarium I was perplexed, but in a good way.";
fDesc[2] = "Aerosmith? The group of Boston with 35 years of history behind them has introduced the second significant foray into the PC Gaming Universe.";
fDesc[3] = "game. The result is an interesting game that, even if it has flaws, contains several levels of depth and replayability. The game will certainly appeal medieval fantasy fanatics as it introduces new elements for the genre.";
fDesc[4] = "\"PowerLooks\", gentle motion, high-resolution text, and dynamic TV-style transitions. It is also possible to use Ovation´s built-in presentation tools to generate special slides that will be inserted in the presentation (Walk In, Walk Out, Heading, Subheading, Intermission).";
fDesc[5] = "with a Windows environment. Includes a check-strip, excel export, correction possibilities etc.";
fDesc[6] = "can create your headings in some minutes. First of all, you should select a background for your heading by clicking File menu Open – it can be any picture in bmp, jpeg, or gif formats or keep a white background if you want.";
fDesc[7] = "format DivX or Angel Potion and back, XviD, 3ivx to DivX 4&5 and back. At converting in a AVI-files is only replaced the heading without any changes data.";
fDesc[8] = "for each recipient. The final recipient will see only his/her name and address in the \"To\" field.";
fDesc[9] = "HTML stands for \"HyperText Markup Language\", wich means that, at the beginning, this language was created easy and simple so everybody will use it on the web. The software offers the means to insert Headings, Lines, Paragraphs, Links, Lists, Images and Text presentation.";
fDesc[10] = "views ( Gantt, Network, Resource, Estimation, Risk, Plan..) to get the broad understanding of where your project is heading.";
fDesc[11] = "efficiently enter system data, evaluate and analyze results, and produce professional hydraulic calculation reports.";
fDesc[12] = "recipient will see only his\her address in the \"To\" field. The macros can be replaced with the personal data.";
fDesc[13] = "frequencies? Check your sounds and control them now with Monofilter 2.0";
fDesc[14] = "are in the facility at the same time of the incidents of Half-Life. The modification includes very challenging and smart levels, as well as new weapons and items. Visitors is a great modification that anyone with HL should check out.";
fDesc[15] = "student pilots, as it helps you generate the flight logs without having to do all of the math. It's not a graphical-type planner.";
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 = '...';
}
}