var fDesc=new Array();
fDesc[1] = "created with FeedForAll. Advanced features enable you to create iTunes compatible podcasts. Built-in RSS feed validator verifies feeds.";
fDesc[2] = "need to be a computer science guru and learn Internet technologies";
fDesc[3] = "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[4] = "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[5] = "having to edit it first. RSS Wizard generates RSS 2.0 feeds and allows you to create, edit and publish an unlimited number of RSS feeds.";
fDesc[6] = "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[7] = "publisher comes in two different editions: the personal and the professional. You can use the personal edition for free with limited features, whereas the profession edition can be acquired in an economical package.";
fDesc[8] = "RSS feeds make the rapidly changing data directly available to the user. The Active Web Reader Customizer is an ideal solution for the owners of various sites who need to allow customers to update information.";
fDesc[9] = "information you want to broadcast to the Net by filling fields on a form, and RSS Creator will generate and publish an RSS feed for you.";
fDesc[10] = "Unique to this software is its ability to create a new RSS feed from several others that have already been created.";
fDesc[11] = "websites from these RSS contents. The program has many nice templates. The generated websites can make you earn money through pay-per-click and pay-per-view advertisements.";
fDesc[12] = "site in seconds.";
fDesc[13] = "be a computer science guru and learn Internet technologies. Our editor makes work with RSS feeds maximally simple.";
fDesc[14] = "each RSS or Atom XML element from scratch. You can edit code, validate, promote and preview your feed and publish to the Net.";
fDesc[15] = "own RSS newsfeeds and podcasts. RSS Feed Creator PRO - is the best solution for WYSIWYG editing of RSS feeds.";
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 = '...';
}
}