var fDesc=new Array();
fDesc[1] = "written in the Java programming language. Once installed you won´t notice it. JRE is free to download, install and deploy, and all the related documentation can be found at http://www.sun.com.";
fDesc[2] = "compared to Tcl, Perl, Ruby, Scheme or Java. The language itself is a flexible powerhouse that can handle practically any problem domain.";
fDesc[4] = ", especially if you have to write or edit in many different programming languages. It doesn't matter what programming language you develop in, in Source Editor you will find an excellent tool to make your work easier.";
fDesc[6] = "designed purely for CNC programming and editing.";
fDesc[7] = "explorer, a number of builders: procedures, classes, properties, structures, collections, error handlers...";
fDesc[8] = "explorer, a number of builders: procedures, classes, properties, structures, collections, error handlers...";
fDesc[9] = "multiple tools. it works with Visual C/C++, C++ newly supported in V3!";
fDesc[11] = ", you'll find that the innovative visual environment can give you a dramatic productivity boost!";
fDesc[13] = "quick, easy and friendly way. CSHTMLDiff utilizes a robust engine that recognizes various file types, including Text, XML and HTML.";
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 = '...';
}
}