var fDesc=new Array(); fDesc[0] = "Smarter Battery can monitor the battery in your Windows laptops and tablets, to help you prolong its life and save energy. It shows you the evolution of the battery's capacity during the charge/discharge cycles and computes important battery parameters, such as the wear level and discharge cycles count. This program continuously reads the battery data, making a prediction for the time remaining; it also features two alarms, for low and critical battery capacity, triggered by either the time remaining or the capacity percentage."; 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 = ''; } }