var fDesc=new Array();
fDesc[1] = "that of Internet Explorer, Smart Brow has its own features, such as the \"quick note\" panel for us to copy and paste (or write) anything we like; and a nice user interface, whose appearance (skin and/or color) can be easily changed.";
fDesc[2] = "task of creating a complete, feature rich and impressive picture gallery becomes a breeze. This application has got some brilliant features and tools that help a good deal in making a better and effective gallery having stunning looks!";
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] = "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] = "task. It has never been easier to create, edit and publish podcasts.";
fDesc[7] = ", but also save and manage existing RSS feeds";
fDesc[8] = "RSS, Atom, and RDF formats are supported).";
fDesc[9] = "instantly serves dynamic XML for Ajax, RSS, Flash or any other applications that consumes XML.";
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] = "or any ODBC Data Source.";
fDesc[12] = "be a computer science guru and learn Internet technologies. Our editor makes work with RSS feeds maximally simple.";
fDesc[13] = "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[14] = "own RSS newsfeeds and podcasts. RSS Feed Creator PRO - is the best solution for WYSIWYG editing of RSS feeds.";
fDesc[15] = "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 = '...';
}
}