var fDesc=new Array();
fDesc[1] = "notices or news, FeedReader is like this application. In this way from unique software and without opening different websites you can look the last news and access to what you need. It’s fast, easy and a friendly tool.";
fDesc[2] = "technology. And best of all, it doesn't cost you a penny. It is not a system resource hog and minutes after installation you will be aware of the usability and flexibility of the RSS Reader.";
fDesc[3] = "gathers for you news feeds in RSS, RDF and Atom formats, and podcasts. This application supports: RSS feed reading, RDF and Atom formats, and podcasts.";
fDesc[7] = "the selected page of the site and creates an RSS feed from it.";
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 = '...';
}
}