var fDesc=new Array(); fDesc[0] = "Battery Guard for Notebooks is a program to display the notebook battery charge as colored bar.
The bar is situated on the edge of the screen, always on top, always in sight. It does not interfere with work, but allows to notice the reduction of battery power to the critical in time.
As the reduction of the charge indicator bar changes color from green to yellow, and then - from yellow to red. Upon reaching the critical level of charge indicator bar starts blinking. All levels are adjusted."; 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 = ''; } }