var fDesc=new Array();
fDesc[1] = "applications called gadgets, those gadgets offers us a quick access to different tools or functions that may be useful on our daily duties. Microsoft included a little list of gadgets with their sidebar, however there are much more available on vistagallery.microsoft .com.";
fDesc[2] = "full pages. It is a very useful feature, because it helps to quickly look through all articles’ headlines and choose the most interesting of them.";
fDesc[3] = "your content, and getting more traffic.";
fDesc[4] = "created with FeedForAll. Advanced features enable you to create iTunes compatible podcasts. Built-in RSS feed validator verifies feeds.";
fDesc[5] = "contains a built-in mini FTP client and a site manager to upload and download generated RSS feeds. It also contains an XML previewing tool. The program can save your feeds as HTML.";
fDesc[6] = ", this toolbar makes it easy and accessible to manage and display RSS feeds from various websites and news sources .";
fDesc[7] = "RSS feeds automatically and notify you with a pop-up notification window. The program is multilingual and supports password-protected feeds. RSS Xpress has the ability to filter the news and display the full news in a new tab.";
fDesc[8] = "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[9] = "them to websites through an enhanced built-in FTP uploader. The program lets webmasters control feed properties and manually add/edit/remove news from their RSS feeds. The program also has a preview option.";
fDesc[10] = "specify. The program can make a copy of your channels and it allows you to restore them at anytime. The program can be minimized to tray and stay on top of other applications.";
fDesc[11] = "RSS feeds. Update the content through the network. All features included in Web Screen Saver 2008";
fDesc[12] = ", but it adds some nice features to the mix. For starters, Scoop is a multi-platform project. Thanks to the Adobe AIR framework, Scoop can work on Windows, Mac and Linux machines.";
fDesc[13] = "and a built-in search function. A built-in web browser is included so you can browse the target pages of your RSS headlines.";
fDesc[15] = "programming skills.";
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 = '...';
}
}