var fDesc=new Array();
fDesc[1] = "translates them to 2D format, which makes it possible to print them. Pepakura Designer allows you to load files made with 3D Studio, LightWave, Softimage, AutoCAD and the freeware format MetasequoiaLE.";
fDesc[3] = "television, games and movies with powerful animation and rendering tools. This version includes new features in Essentials such as Hair & Fur and the Syflex Cloth module, which are two incredible tools.";
fDesc[13] = ", Cinema 4D or any software which exports RLA/RPF files or its Z-Buffer as an image file. Defocus Dei also includes others Z effects.";
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 = '...';
}
}