var fDesc=new Array();
fDesc[1] = ", Audio-Editor, Audio-converter, CD-Burner, Hundreds of music videos, support of iPod and Playstation Portable (PSP)";
fDesc[2] = "several radio stations, your music collection will grow up without doing anything for that;";
fDesc[9] = "of Album-Covers, embed them into existing files by advanced ID3-Tag-Editor. Playlist management, create your own Playlists with order of the songs.";
fDesc[15] = "Sie die festliche Atmosphaere. Erfreuen Sie sich am huebschen Weihnachtsbaum mit funkelnden Lichtern.";
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 = '...';
}
}