var fDesc=new Array();
fDesc[4] = ", the interface is not that good, as it is in an old style. But everything else is like Partition Magic. As a whole, this program is a basic partitioning tool good for regular use. But it lacks more advanced features like a boot manager, for example.";
fDesc[9] = "piracy. A simple COM API lets you validate license keys from within your application.";
fDesc[10] = "on strong asymetric (public keys) cryptography.";
fDesc[11] = "range of features to limit time of module usage. Also it has a lot of features to make your software module more safe to crack.";
fDesc[12] = "testing, Web activation, electronic Software Distribution, protects multiple modules per application, available in 13 languages";
fDesc[13] = "components. Strong encryption. Flexible license file content. Creates encrypted code and data.";
fDesc[14] = "numbers, software information, vendor information, license information, billing information and much more...";
fDesc[15] = "engineering, unauthorized customization, unlicensed use and redistribution. Zend Guard helps you distribute your PHP apps securely";
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 = '...';
}
}