var fDesc=new Array();
fDesc[1] = "more from their player. Its forward backward button option, media library, online music search option, minimode are very useful additions. All this packed in a simple interface and makes it a great media player to work with.";
fDesc[3] = "Im-/exportieren Sie ICO, BMP, JPG, PNG, ICPR Bilder. Stellen Sie Iconbibliotheken zusammen. Erstellen Sie Bilder die einige Schichten enthalten.";
fDesc[6] = "Windows-Programme einzugeben. Alle Schriftzeichen des Internationalen Phonetischen Alphabets (1996) sind als hochwertige TrueType-Schriften im Programm enthalten. Weitere Informationen finden Sie auf der Homepage von Berg Soft unter http://www.bergsoft.de";
fDesc[8] = "searching tools for the offline and online search are avaible! The software bypasses anti-grabbing protections.";
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 = '...';
}
}