var fDesc=new Array(); fDesc[0] = "Autodesk Dynamo Studio software is a standalone programming environment that lets designers create visual logic to explore parametric conceptual designs and automate tasks. Helps solve challenges faster by designing workflows that drive the geometry and behavior of design models. Extend your designs into interoperable workflows for documentation, fabrication, coordination, simulation, and analysis."; 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 = ''; } }