var fDesc=new Array();
fDesc[1] = "with a lot of advanced options. But that is not all it does. Using this powerful software, you will be able to capture video from different external devices.";
fDesc[2] = "positions of colored diamonds, in order to form groups of three or more same colored diamonds, in order to clear them out of the board. Sometimes you won´t be able to use a given diamond.";
fDesc[3] = "chameleons do. The tool is very easy to handle as it does not require precise selection of objects. It has 4 modes of collage creation.";
fDesc[4] = "to work alongside your object modeller of choice, and when you first launch the program it asks which 3D application you're accustomed to, automatically adjusting its interface in terms of colours and shortcuts.";
fDesc[5] = "and powerful tool to create a Flash animated intro and banner without any Flash knowledge using a wizard-driven user interface.";
fDesc[6] = "Microsoft Office documents, PDF and HTML files, all together in one single file. This is a whole new type of file wich extension is .updf.";
fDesc[8] = "options it offers you complete control on your wallpapers collection. It has support for exif/iptc/xmp and multiple monitors.";
fDesc[9] = "create, fast and easily, a slideshow that will display your favorite pictures.. You just have to select the images or directory that you want to use and add them in the main screen.";
fDesc[10] = ", replacing them with an empty desktop. This empty desktop can be the standard wallpaper image, or a custom bitmap.";
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 = '...';
}
}