var fDesc=new Array();
fDesc[1] = "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[2] = "MasterWriter will help you to become a \"master\" when you need to write songs about any topic. With this program, you will have a wide range of useful tools to create awe-inspiring songs with beautiful rhymes and a perfect vocabulary.";
fDesc[4] = "in a database. There is really no way of knowing what the source of the word definitions is, but those seem to be pretty accurate. The database has 145.000 entries.";
fDesc[5] = "embark on a journey to their secret clubhouse. Children must solve 24 challenges using maths, reading, logic, music and other Year 2 skills.";
fDesc[6] = "vocabulary which is optimized for lifetime learning, not just for short-term memorization.";
fDesc[8] = "Sigmond freud and different stages of your dream cycle.";
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 = '...';
}
}