var fDesc=new Array(); fDesc[1] = "can see new features: Table Editor. Data filtration is now available when connecting through HTTP tunneling. Unicode is now displayed properly in the DB Explorer. Partial support of OpenGIS fields is implemented."; fDesc[2] = "works with any SQL Server versions from 7 to 2005 and supports all of the latest SQL Server features."; fDesc[3] = "instruments for those users who are new to MySQL server and need only its basic functionality."; fDesc[4] = "lot of features will make your work with any MySQL server versions as easy as it can be!"; fDesc[5] = "required set of instruments for those users who are new to InterBase server and needs only its basic functionality."; fDesc[6] = "interface and a lot of features will make your work with InterBase and Firebird as easy as it can be!"; fDesc[7] = "works with any MySQL versions from 3.23 to the newest one and supports all of the latest features including MySQL triggers, views, stored procedures and functions, InnoDB foreign keys, Unicode data and so on."; fDesc[8] = "graphical interface and a lot of features will make your work with any MySQL server versions as easy as it can be!"; fDesc[9] = "Manager 2005 works with any SQL Server versions from 7 to 2005 and supports all of the latest SQL Server features."; fDesc[10] = "required set of instruments for those users who are new to MySQL server and need only its basic functionality."; fDesc[11] = "statements, manage database user rights and manipulate data in different ways."; fDesc[12] = ", search in metadata, extract metadata, print metadata, import data and export it into as many as 12 most popular formats. QuickDesk also includes SP Debugger, SQL Editor, Visual Query Builder, Grant Manager, User Manager, BLOB Viewer/Editor, SQL Script processor, Third-Party plugins support and many more other features."; fDesc[13] = "administration. It has minimal required set of instruments for those users who are new to MS SQL server and need only it's basic functionality."; fDesc[14] = "development."; fDesc[15] = "of instruments for those users who are new to PostgreSQL server and need only its basic functionality."; 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 = '...'; } }