var fDesc=new Array(); fDesc[0] = "LunchBox is a set of computational design tools for Grasshopper. The plugins include new component nodes for managing data and geometry for activities such as generative form making, paneling, rationalization, and interoperability. You can create parametric surfaces and forms such as the Mobius, Klein, or 3D Supershape, paneling systems such as quad grids, diamonds, or triangles, wire structures such as diagrids or space trusses, and more."; 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 = ''; } }