var fDesc=new Array();
fDesc[0] = "Power meter for Windows 9x/XP/2003/Vista. It’s a simple meter.
Main Features:
- It gradually appears as the power levels drop. The lower the power, the more prominent the meter will be
- When you’re charging the laptop it’ll turn green and slowly disappear/fade as the charge increases
- The meter appears either on the bottom left or bottom right of the screen; it moves to the opposite corner if you move your mouse over it.. or disappears and fades back after your cursor has left the area
- A large message will appear when the laptop switches from mains power to battery (and vice versa)
- Small size! 76k executable & <5Mb memory usage";
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 = '';
}
}