var fDesc=new Array();
fDesc[1] = "WMHelp.com. It’s the basic version of WMHelp.com, which can be run without a license. is very easy to use as the toolbar and menus that are displayed at the top of the window can be handled very easily. Just pressing a button can hide them.";
fDesc[2] = "text based XML Schema Editor, XML editor, validation, intellisense, XPath & Web Service Tools, HTML Document Generator, XML Diff Tool and more.";
fDesc[3] = "excellent option to choose. This application lets you to create, edit and test XML, XSLT and DTD documents, and displays them with color-coding of tags and other kinds of markup.";
fDesc[4] = "elements. XML can be used for a myriad of purposes, including serializing data, like YAML and JSON languages do. Some of the features this incredible program includes are: DTD/XML Schema/RELAX NG validation, XSLT, XPath, pretty-printing, among many others.";
fDesc[5] = "want. Of course, the design process is 100% visual with excellent drag&drop features. If you are an Eclipse user, you can get the corresponding plugin to get the most powerful combination of IDEs.";
fDesc[6] = "to HTML using XSLT stylesheets; also, users can combine CSS with XML for direct formatting of the XML data.";
fDesc[7] = "Based Editing. It also includes different Tag Prompting and XML and Schema Validation. The other feature includes XML View, Tree, Grid, and XML Script editing modes.";
fDesc[8] = "database structures and data. SQL Delta also reports on structures and data including differences and exports reports to HTML, XML, PDF and Txt.";
fDesc[9] = "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[10] = "schema. Update schemas using a built in ERD diagram. Compare schemas using the database compare tool.";
fDesc[11] = "read-only tool which allows users to browse schema information safely without the fear of any accidental damages. It provides users with features like spreadsheet view, DDL scripts and sorting in table/view structure and data sample displays.";
fDesc[12] = "project or an enterprise. Visualize and easily manage file associations via its graphical design interface.";
fDesc[13] = "(Windows HTML Help), Excel or plain text formats and supports all common database interfaces - ODBC, OLE DB, or Oracle Call Interface";
fDesc[14] = "powerful graphical schema designer, file converters, debuggers, support for XSLT, XQuery, databases, VS, Eclipse, and more.";
fDesc[15] = "triggers and stored procedures. Database schemas tree-view makes the process more comfortable.";
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 = '...';
}
}