var fDesc=new Array();
fDesc[1] = "you will be enchanted with this cool music manager. Teen Spirit is a complete music manager that will help you to have all your music files (MP3, wma, ogg, etc) perfectly categorized in the ways you always wanted.";
fDesc[2] = "as DVD, VHS, VCD, LaserDisc or home videos with detailed information. Retrieve movie info from online movie database!";
fDesc[3] = "lives.";
fDesc[4] = "knowledge and thinking areas like literacy,numeracy, concept and idea, in a visual way.We can download on-line and try this program for free for a 30-days period. There is a Quick Tour at the developer's site where we can see the program on work.";
fDesc[6] = "and video files";
fDesc[12] = "features. Creating the genealogical map is a visual experience.";
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 = '...';
}
}