var fDesc=new Array();
fDesc[1] = "every file present on the current drive with its last modification’s date and time, size of the file, attributes like hidden or read only or write only, etc. Not only that, the sorting of the files can be done by date created, modified or by size, name, etc.";
fDesc[2] = "Scancode Map registry key, allowing you to change the internal assignment of the keys. KeyTweak uses VB6 Runtime files. If you´re running are required, Windows 2000/XP, they´re installed already.";
fDesc[3] = ", Borland C++ Builder, Borland Delphi. Visual Basic forms viewer and source code analyzer.";
fDesc[4] = "Bridges the Gap between XML and Code (C++,C#,Java,VB6,VB.Ne t). Generates a class library based on an XML Schema (XSD,XDR,DTD). The resulting library makes it simple to read and write XML documents programmatically.";
fDesc[5] = ", ToolBars, TreeViews, OutlookBars, StatusBars, PropertyLists and more all based on an ultra-flexible, reusable core control.";
fDesc[6] = "tested also are engineered to help you create modern interfaces without writing much line of source code.";
fDesc[7] = "explorer, a number of builders: procedures, classes, properties, structures, collections, error handlers...";
fDesc[8] = "encoding . CryptoTools supports C, C++, COM, VB6, Java, C#, VB.NET, VBScript, Java Script, Delphi and more.";
fDesc[9] = "programming language, a further BASIC dialect and is related to VB.NET, Visual Basic 6 and Java.";
fDesc[10] = "Shaped forms for VB 6.0";
fDesc[11] = "property then select which colour to become transparent. This control does the rest. ActiveX control for VB6.";
fDesc[12] = "fonts, multicolor gradients, tile, fit to size, center backgrounds, MDI/MDI child support, print support independant of screen res, and more!";
fDesc[13] = "thoroughly designed and tested also are engineered to help you create modern interfaces without writing much line of source code.";
fDesc[14] = "tested also are engineered to help you create modern interfaces without writing much line of source code.";
fDesc[15] = "the Visual Basic 6 IDE, it allows the detection and correction of coding standards and other rule violations.";
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 = '...';
}
}