var fDesc=new Array(); fDesc[0] = "Trajec3D is a three-dimensional rigid body rock fall analysis program that can simulate the trajectory of volumetric bodies during free fall, bouncing, sliding and rolling. The body shape is selected from a toolbar and the size is a function of the selected geometry, mass and rock density. The physics interaction between materials is a function of the combined properties of the fall body and the impact surface, and three parameters are required: coefficient of restitution, static friction angle, dynamic friction angle."; 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 = ''; } }