var fDesc=new Array(); fDesc[0] = "Camunda Modeler is a BPMN 2.0 modeling plugin for Eclipse which focuses on seamless modeling of process and collaboration diagrams. You can quickly navigate through bigger process diagrams using the model outline. You can use the context pad to change task, gateway, and event types or to continue modeling from where you are. It has an automatic sync between source and design view."; 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 = ''; } }