var fDesc=new Array();
fDesc[1] = "Ignition gives you instant access to all your PCs, whether they are LogMeIn Free, Pro or IT Reach computers. Your log in information and preferences are stored securely, enabling instant access from anywhere without having to remember all of your passwords.";
fDesc[3] = "space to accommodate files. This feature provides the user with the option to save underutilization of CD space while burning. When we opt to burn a software or data that is split across multiple CDs the normal CD burning software ends up writing ...";
fDesc[6] = "burn on the last CD of your set... Ignition is a space optimizer that will dispatch the files on the minimal number of CDs.";
fDesc[7] = "through a very nice graphic interface. Not only that, the program includes a great arrange of features to make your rFactor launch smoothly and without problems.";
fDesc[12] = "you and your customers with detailed records. With Engine Build Log 1.1 you can input specs for complete engines, machined block or complete short block, rotating assembly and complete head, ignition/fuel";
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 = '...';
}
}