var fDesc=new Array();
fDesc[1] = "tools. Ideal for non-experts. It includes many objects, buttons, 3D graphics and predetermined animations and varied 3D effects to apply to texts. Make adjustments of properties and prospects in a simple and direct manner using the mouse. It runs on Windows 2000 / XP / Vista.";
fDesc[2] = "allows you to browse, zoom, copy and move any thumbnail or image file. ST Thumbnails Explorer supports every thumbnail file like Adobe Illustrator v.7-11, CorelDRAW v.4-12, Macromedia FreeHand v.7-11, CorelXARA / Xara X etc. Folder tree and drag/drop feature enables the user to explore faster.";
fDesc[3] = "and animated 3D text and graphics, such as logos, titles, headings and buttons. When you run the program for the first time, you`re offered to watch a Demo Movie that explains how the program works. You can always watch that movie in http://site.xara.com/p roducts/xara3d/demomov ies.asp.";
fDesc[4] = "shred folders and files for Windows 98/ME/NT/2000/XP/2003. You will not worry about your sensitive or private documents any more.";
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 = '...';
}
}