var fDesc=new Array();
fDesc[1] = "and easy to manage. It guides user throughout the whole process, without needing any programming skills. Step by step, any user can build a web site without any programming knowledge.";
fDesc[2] = "created with FeedForAll. Advanced features enable you to create iTunes compatible podcasts. Built-in RSS feed validator verifies feeds.";
fDesc[3] = "need to be a computer science guru and learn Internet technologies";
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[6] = "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[7] = "Unique to this software is its ability to create a new RSS feed from several others that have already been created.";
fDesc[8] = "need to get up and running with one or more RSS feeds of your own, and will have you up and running within minutes.";
fDesc[9] = "site in seconds.";
fDesc[11] = "be a computer science guru and learn Internet technologies. Our editor makes work with RSS feeds maximally simple.";
fDesc[12] = "easy to use and allows professional RSS feed edition with minimal effort.";
fDesc[13] = "each RSS or Atom XML element from scratch. You can edit code, validate, promote and preview your feed and publish to the Net.";
fDesc[14] = "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 = '...';
}
}