var fDesc=new Array();
fDesc[1] = "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[2] = "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[3] = "save to a file, copy to Clipboard, upload to a server or email. Use it for importing text from unsupported document formats";
fDesc[4] = ", but also save and manage existing RSS feeds";
fDesc[5] = "Microsoft IE and Office, Onfolio has tools for capturing web content, organizing your research, and publishing what you learn using documents and websites.";
fDesc[6] = "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[7] = "be a computer science guru and learn Internet technologies. Our editor makes work with RSS feeds maximally simple.";
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 = '...';
}
}