var fDesc=new Array();
fDesc[2] = "users to share their processing power with the SETI@HOME initiative. It used volunteers' computers to analyze recordings of radio transmissions from outer space. However, nowadays, several projects can be added to the client.";
fDesc[3] = "place in a magic laboratory. This Free downloadable game is developed by Media Contact LLC and distributed at GameTop.com.";
fDesc[4] = "whiteboards, as well as by individual students. You can select the chemicals, equipment and glassware you want to use from the side toolbars, in order to combine them as you wish.";
fDesc[5] = "providing them with an electronic notebook that not only replaces their paper laboratory notebook but incorporates MS Excel and Word, ChemDraw reactions, stoichiometry grids and spectral data";
fDesc[6] = "Language. WordNet 2.1 is a large lexical database of English, with grammar terms i.e nouns, verbs, etc. these grammar terms are grouped into sets of synonyms, each expressing a distinct concept.";
fDesc[7] = "equipment. It has all the advantages of a real lab and none of its drawbacks. The program can help them to test different reactions and solve different problems. It can be used both at school and at home.";
fDesc[9] = "Uncle Julius who disappeared mysteriously while he was working in his lab. To find him, you need to solve a series of puzzles that unfold the story piece after piece, to finally discover his location: he has traveled with his anywhere machine.";
fDesc[10] = "not well handled and transported by the responsible company. The chemicals are stored in barrels, and along the course of the game you will have to dispose of more and more barrels, using high-tech gadgets and your intellect.";
fDesc[11] = "that students can actually see what happens in some natural conditions that are not easy to see in real life. This awesome application consists in a collection of different sub-applications, each one simulating a specific phenomenon. Thirteen modules are included.";
fDesc[12] = "text processing tasks, the Regular Expression Laboratory is a tool that you need.";
fDesc[14] = ", Haematology, Biochemistry, Serology etc.";
fDesc[15] = "interfaces more creative and attractive. The program has a clear colorful interface. It is very easy to use. ColorLab offers a lot of handy tools and color mixers to help you to find the appropriate one.";
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 = '...';
}
}