var fDesc=new Array();
fDesc[0] = "WinANT Echidna is a Windows interface to the DITA Open Toolkit processing functionality. It serves primarily as an interface to the Ant build utility, for the sole purpose of processing DITA documents.
Main Features:
- Provides intuitive Windows front-end to DITA Open Toolkit
- Generates Ant build files
- Generates ditaval files
- Allows later batch processing of builds
- Supports DITA OT plug-ins";
function tShowHide(id, show)
{
var s = document.getElementById("desc");
if ((s.innerHTML.length<=212 || show==1) && show!=2)
{
s.innerHTML = fDesc[id];
if (document.getElementById('m1'))
document.getElementById('m1').style.display='none';
if (document.getElementById('m2'))
document.getElementById('m2').style.display='none';
if (document.getElementById('more_txt'))
document.getElementById('more_txt').style.display='inline';
}
else
{
s.innerHTML = '';
}
}