var fDesc=new Array();
fDesc[1] = "shall get a lot of services from windows live. It is a free service created by Microsoft. But there are many features that you will need to pay for like the Windows Live Call, which is something like Skype.";
fDesc[2] = "installations with uninstall control and feedback, access to registry keys, INI files, etc.";
fDesc[3] = "program, but includes advanced customization options so we can enjoy a menu of absolutely professional installation. The program has an interface that emulates the Windows Explorer.";
fDesc[4] = "install maker products. Usually an install maker is used to create the installer of a software project. But Patch Maker will not create the installer of your program, it will create the installer of your program's updates.";
fDesc[5] = "executable files. This complete version of Install Maker follows the standards set for all installation programs. It has no limitations in functionality and has unlimited rights for both commercial and non-commercial uses.";
fDesc[6] = "application installation procedures.";
fDesc[9] = "and turn the otherwise complicated task of managing point releases into a fully automatic solution.";
fDesc[12] = "provides you with a wizard-style interface, excellent compressor, a multilanguage support and many other capabilities.";
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 = '...';
}
}