var fDesc=new Array();
fDesc[0] = "TopBraid Composer - Maestro Edition (TBC-ME) is the most comprehensive version of TopBraid Composer.
It is optimized for developing web applications and services based on the TopBraid Live platform.
Most notably, TBC-ME can be used to develop and execute SPARQLMotion scripts including web services for processing data chains and creating integrated data services.
TBC-ME includes its own internal web server for testing applications resulting in significantly improved turn-around times in application development.
TBC can also be used to run TopBraid Ensemble and assemble Ensemble-based applications.";
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 = '';
}
}