var fDesc=new Array();
fDesc[1] = "applications and lots more, without even knowing bare basics of programming. It comes with many impressive features facilitating the user to create small size stand alone apps, such as games, installation programs and similar things without spending lot of time.";
fDesc[2] = "wizard. Just tell where your CD files are located and what documents you would like to autorun or display in the autorun menu. No programming required!";
fDesc[3] = "packages. Digital signatures can be added to your package. The program is also capable of building zip, 7-zip, self-extracting and cabinet archives.";
fDesc[4] = "When we open the program we can find thirteen buttons in the top toolbar, in the left side we can see the commands that we can add to our project and one window that shows the selected items.";
fDesc[5] = "or send your slide show to a far away relative, ACD FotoAngelo slide show software and screen saver creator can make it happen.";
fDesc[6] = ", transition effects, easy to use wizard and supports avi/wav/mid/mp3 media files. Extra: templates for one-step screen savers.";
fDesc[8] = ", E-Books, CD business cards and promotional CDs. It is an essential tool for software companies, retailers, photographers, designers";
fDesc[9] = "to use images, text, HTML and multimedia (including flash) in a standard screensaver. The huge difference between other similar programs and this one in particular is that it can update automatically from its web location.";
fDesc[10] = "projects a more personal & professional touch!";
fDesc[11] = "projector into info that you choose yourself. Versiown ALSO replaces the icon into one that you choose yourself.";
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 = '...';
}
}