var fDesc=new Array(); fDesc[0] = "This is a software to calculate three-dimensional structures of bars with rigid joints, semi-rigid or pinned. Default bars unions to nodes will be stiff, but the user can modify to your taste the degree of embedment of the same at each end so as to calculate the structure more closely resembles reality. The results are the deformation of the structure and the efforts diagrams. This program can import structure geometry from a DXF file an export the graphics results at the same format."; 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 = ''; } }