var fDesc=new Array();
fDesc[1] = "Pte Ltd. There is a trial version available from the developer’s website. We can select to download it as an exe file or as a zip file. We can evaluate it for 30 days. This software is an alarm clock plus a reminder for Windows.";
fDesc[2] = "Balanced Scorecard to develop Individual Employee Scorecard plans.";
fDesc[3] = "advantages that that represents in comparison with working on paper charts. With PsyChart you can get instantly all the information related to any point on the chart just by a click of your mouse. PsyChart allows you to work with thermodynamic processes.";
fDesc[4] = "required.";
fDesc[5] = "between a starting and ending character(s) repeatedly in all cells. Excel 2000 or higher required.";
fDesc[7] = "frequency domain. Graphical, block oriented user interface with more than 80 basic elements. Creates time, Bode, Black-Nichols and Nyquist diagrams.";
fDesc[9] = "size for burning to a CD/DVD?\". If these questions are familiar then try ViewFolderSize Pro, to directly view details of file and folder size.";
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 = '...';
}
}