var fDesc=new Array();
fDesc[1] = "and audio files right on your computer with no additional software. This incredible program supports for many video formats apart from regular DVD (PAL, NTSC, VCD, SVCD) formats, such as MPEG4 (including DivX, XviD, etc.), MPEG1, MPEG2, AVI, etc.";
fDesc[2] = "lets you read and download eBooks from eBook stores very easily on your computer. For reading these ebooks on other than compute, you have to connect any device to your computer and just click on your chosen ebook.";
fDesc[3] = "includes 230 ready-to-use effects, drawing tools, timeline and sophisticated scripting language. You can import vector art, images animation and sounds";
fDesc[4] = "labels, dividers, business cards and name badges are a breeze to create. Labels are an essential part of everyday office operations and this software seamlessly interfaces within Microsoft® Word for Windows, adding panache to daily tasks.";
fDesc[5] = "on a colored background with a soft curved design. In this case, we are talking about an aqua blue background with different shades forming hill-like shapes.";
fDesc[6] = "than 40 image filters. Supports over 140+ image formats such as JPEG, BMP, PNG, GIF, ICON, PSD. Commandline support.";
fDesc[7] = "the ability to handle playback of both commercial and consumer-created DVDs. It features a very simple and intuitive user interface which does not require any technical knowledge to be operated and makes this task a breeze.";
fDesc[8] = "allows you to edit images from a variety of formats and enhance them using different effects. Moreover, the program features a very simple and extremely easy to use user interface which does not need any technical knowledge and makes this task a breeze.";
fDesc[9] = "all type and genre. The application is very helpful in development of visually appealing websites by providing in-built and ready to use templates. Using the templates in web development is just a breeze.";
fDesc[10] = "clouds drift by and the meadow flowers bend in a gentle breeze. Download the full version of Living 3D Butterflies and watch your screen come alive with the beauty of spectacular 3D butterflies.";
fDesc[11] = "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[12] = "background with a soft curved design. In this case, we are talking about a white background with waves in different shades of blue and green.";
fDesc[13] = "personally liked most of all is the background music, it is very nice and relaxing. But, unfortunately, there is only one melody that sounds throug all the beach scenes.";
fDesc[14] = "play MP3+CDG (MP3+G), MP3+KSF (text lyrics), KMF (with CDG or KSF lyrics), or any media plus CDG (ie: WMA+CDG, WAV+CDG). There is no complicated interface or graphical skins to slow you down. All operations are keyboard controlled so you can run a show with a single-monitor system without the singer/audience seeing you work.";
fDesc[15] = "software makes the task of changing a folder's icon a breeze. Customize My Folders is a complete solution for all the tasks corresponding to changing individual folders with an option to include the subdirectories too.";
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 = '...';
}
}