var fDesc=new Array();
fDesc[1] = "browser to be used instead Internet Explorer, Mozilla, FireFox, Opera or Safari. But the features really important are: online profile storage, mouse gestures, built-in AD/Pop up blocker, privacy control and other more features. Avant Browser runs in Windows platforms.";
fDesc[2] = "browser, to read documents and emails offline. At the begining Gears only implemented Google Reader, but now Gmail is in progress and it is expected that in the near future it will be extended to other applications such as Google Docs or Google Calendar.";
fDesc[3] = "customize the way feeds are organized and displayed. Set up custom news watches based on keywords or use the powerful search to find articles. You can even download podcasts and audio files and have them show up on your portable audio device.";
fDesc[4] = "excellent way of publishing content. If you are anything like me, there are several web pages that you visit every day, and RssReader allows you to keep track of them all from a single application.";
fDesc[5] = "feeds without subscribing to them first, simply inputting their URL. You will have the list of subscribed feeds on the left, item-headlines at the top-right, and item-contents at the bottom right.";
fDesc[6] = "directly onto your desktop. Unlike other newsreaders, MediaTicker gives you a visual perspective on your RSS feeds by displaying content in both text and thumbnail image format. Features include: Watch photo memories and RSS feeds fade in and out or subtly scroll across your screen. Click any thumbnail image or headline to view the full-size picture or website. Send photos via email, set them as your desktop background, print in multiple sizes. Add to your ticker the latest news, sports, headlines, cartoons, photos and more from sites like Flickr, Yahoo and MSNBC using RSS. Save images from RSS feeds to your hard drive by pressing the \"Save\" button in the full-size photo display.* The unique docking âsidebar modeâ keeps the photos on your desktop without interfering with other application windows.";
fDesc[7] = "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[8] = "created with FeedForAll. Advanced features enable you to create iTunes compatible podcasts. Built-in RSS feed validator verifies feeds.";
fDesc[9] = "2.x feed formats. It takes very little space (about 1MB only) on your PC. The user can add all his favorite feeds and keep him updated. He also can save bookmarks of required web pages. The software then notifies if there are any changes in the web pages stored as bookmarks.";
fDesc[10] = "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[11] = ", this toolbar makes it easy and accessible to manage and display RSS feeds from various websites and news sources .";
fDesc[12] = "choose between RSS 2.0, RSS 0.91, RSS 0.92, and Podcast feed formats. It allows us to create feeds containing non-Latin characters, such as Russian, Japanese, etc.";
fDesc[13] = "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[14] = "feeds with both RSS and Atom feeds. The program allows you to create custom channels for your RSS feeds. You can search your news archive using the powerful built-in search engine.";
fDesc[15] = "blogs to many different search engines and web directories, which can drive many visitors to your websites. The program's interface is very easy to understand and follow.";
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 = '...';
}
}