var fDesc=new Array(); fDesc[0] = "MDSolids is educational software for students taking the Mechanics of Materials course (also commonly called Strength of Materials or Mechanics of Deformable Solids). This course is typically a part of civil, mechanical, and aerospace engineering programs and a number of related programs. The software features educational routines for beams, flexure, torsion members, columns, axial structures, statically indeterminate structures, trusses, section properties, and Mohr's circle analysis including stress transformations and strain transformations."; 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 = ''; } }