var fDesc=new Array();
fDesc[1] = "Webshop with point and click ease. This powerful ecommerce solution is trusted by over 203,000 online shops around the world.";
fDesc[2] = "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[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] = "need to be a computer science guru and learn Internet technologies";
fDesc[6] = "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[7] = "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[8] = "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[9] = "Wallpaper, for you can't 'right-click' and set a Flash file as Wallpaper. But in this process Flash Wallpaper brings the awesome potential of Flash programming to the desktop: Desktop Promotions, Syndication (using XML-RSS feeds), Gaming, Event Calendars to name a few.";
fDesc[10] = "feed subscribers. Stop searching for places to promote your blog, and quickly submit your feed to 200 of the top blog and RSS feed directories.";
fDesc[11] = "Unique to this software is its ability to create a new RSS feed from several others that have already been created.";
fDesc[12] = "site in seconds.";
fDesc[14] = ", applications, user interfaces, presentations, mobile device content, and other digital experiences. Get everything you need to prototype your project, design assets, build web experiences, and efficiently maintain and update content.";
fDesc[15] = "other PCs within a company. Integrates fully with Active Directory, allowing for rapid installs";
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 = '...';
}
}