var fDesc=new Array();
fDesc[0] = "COBOL-IT Developer Studio is a COBOL development workshop based on the Eclipse environment. The Eclipse environment offers great flexibility through its wide range of plug-ins. COBOL-IT Developer Studio may be customized according to the specific needs of each company and each individual user.
COBOL-IT Developer Studio has a Auto Complete Function (the editor autocompletes the variables and labels defined in your program), a Project Manager and COBOL-IT Compiler Suite compile, debug & link options accessible through a dedicated GUI interface.
It may be customized according to the specific needs of each company. The Eclipse environment
offers great flexibility through its wide range of 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 = '';
}
}