var fDesc=new Array(); fDesc[0] = "Easy Calorie Counter is a calorie counter program. You can use the calorie information from the built-in USDA nutrition database. It can also be used to search the cloud-based user submissions, or populate the database with your own entries. The application can be used to lose your weight by managing calories."; 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 = ''; } }