var fDesc=new Array();
fDesc[0] = "Comindware® Tracker™ is a web-based workflow management and issue tracking system with integrated task management and collaboration features. With Comindware workflow management software you get a flexible system where multiple teams and departments can:
- Simplify issue tracking
- Visually design and automate workflow processes
- Organize and manage tasks, sub-tasks, and projects";
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 = '';
}
}