var fDesc=new Array(); fDesc[0] = "Forces in 1 Dimension is developed by the University of Colorado to assists the users in exploring the forces at their work when they try to push a filing cabinet.
With Forces in 1 Dimension the users can easily create an applied force and see the resulting friction force and total force acting on the cabinet.
The final results are displayed in a chart, where the forces,position, velocity, and acceleration vs. time are shown."; 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 = ''; } }