var fDesc=new Array();
fDesc[1] = "conversion categories, such as Numbers, Prefixes, Data Storage, Data Transfer, Length, Angle, Area, Volume, Volume - Dry, Time, Velocity, Acceleration, Velocity - Angular, Mass, Density, Force, and much more.";
fDesc[2] = "including those created with drawing, page-layout, or image-editing programs.";
fDesc[3] = "envelope that helped establish Stylus Studio as the premier XML Editor.";
fDesc[4] = "Easy-to-use and powerful, it provides many unique features making hex editing a breeze. Beginner's tutorial included.";
fDesc[5] = "database platforms. This great database utility supports Oracle, MySQL, MS SQL Server, PostgresSQL, Access, Excel, Visual FoxPro, SQLite, FireBird/Interbase, CSV/Text, ODBC DSN, and almost any kind of database format known. ESF Database Converter runs in Windows 2000 or later platforms.";
fDesc[6] = "mainframe editing, program development. Fast, compact and configurable. Windows, DOS, Linux";
fDesc[8] = "technical support. PC, LAN and Web versions available.";
fDesc[9] = "and convert all types of data, including files and tapes created with different operating systems and architectures.";
fDesc[10] = "can do it!";
fDesc[11] = "USA and other world markets. The data can be stored in Metastock or ASCII format.";
fDesc[12] = "time saving tool for developers, documenters, web designers and anyone who has to search and replace in a large number of files.";
fDesc[13] = "publicly traded in USA and other world markets. The data is stored in ASCII format.";
fDesc[14] = ", FoxPro, Microsoft Excel documents, Interbase/Firebird, Lotus 1-2-3, MySQL, Oracle, Paradox, SQL Server, Text, ODBC, XM";
fDesc[15] = "MSSQL to Microsoft Access. You can convert databases simply by configuring several options through Wizard interface or in command line mode. Ability to organize application work using command line parameters is supplemented with a scheduler so you can run the program without user input after scheduling. If a direct access to your MSSQL server is denied (insufficient privileges) you can save your data into a MSSQL Dump file to overcome such restrictions. The primary function of the MSSQL privilege system is to authenticate a user connecting from a given host, and to associate that user with privileges to select, insert, update, and delete a database. The SELECT, INSERT, UPDATE, and DELETE privileges allow you to perform operations on rows in existing tables in a database. The privilege system ensures that all users may perform only the operations allowed to them. Thus in case you have...";
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 = '...';
}
}