var fDesc=new Array(); fDesc[0] = "When laptop battery has passed a certain number of charge/discharge cycles, its capacity decreases and it can't provide a lot of power. Worse yet, the battery gives incorrect info on its capacity. Usually it looks as follows. The battery discharging normally down to certain level. For example, down to 60%. Then there is a sudden drop of the counter down to 5 % and the battery signaling that the remaining charge is just for 1 minute only, while actualy the remaining time is more then 1 hour. Naturally, its not comfortable to work with such battery. You can never know how long you can work and the only wayout is just to replace the battery.

DON'T HARRY UP!!!

Solution:
UplBatteryExtender solves this problem. It uses its own sophisticated algorithm of capacity calculation and shows the real time you can work using battery. So you can use the full power of the battery."; 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 = ''; } }