var fDesc=new Array(); fDesc[0] = "Crosby Sling Calculator is a software application that allows you to calculate a load's center of gravity, and computing the volume and weight of a load. For calculating the load's center of gravity, you can choose between two different methods: by specifying the end weights of a given load, or by specifying the locations and weights of up to four loads placed upon a single pallet."; 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 = ''; } }