var fDesc=new Array();
fDesc[1] = "Album Cover Finder 6.5 is a kind of additional application to this software. It helps all people who uses ITunes in finding a lot of interesting information for their music collections.";
fDesc[2] = "options to narrow down your search result. Set notifications to alert you, or send you an email when new posts meeting your criteria appear on craigslist.";
fDesc[3] = "song. Climb up the myspace and soundclick charts, attention from record labels, gigs, venues, club promoters. Unlimited Plays.";
fDesc[4] = "used also by IPTV provider";
fDesc[6] = "journey to super stardom!";
fDesc[8] = "seconds and minutes.";
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 = '...';
}
}