var fDesc=new Array(); fDesc[0] = "RSI Shooting Lab is a ballistics app for hunters and shooters. The Shooting Lab is packed with features that make it as "user-friendly" as possible given some of its technical subject matter. Information only needs to be entered one time to be accessed throughout the program with a simple mouse click. And, its design is flexible, so you can customize the program for your own personal shooting needs."; 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 = ''; } }