var fDesc=new Array();
fDesc[0] = "4Suite is a platform for XML consisting of a library of integrated tools for XML processing and an XML data repository
The application is a library of tools for XML that include implementing, prcessing technology such as RDF, XSLT, X Pointer and XML/SGML catalogs";
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 = '';
}
}