var fDesc=new Array();
fDesc[0] = "This is a very simple utility that exposes an icon in the system tray and allows you to quickly change the Power Plan Scheme from there.
It is developed in c# with Vs 2010(WinForm).
Features:
- Shows the active power plan with an icon and a tool tip in the system try
- Right click the icon to get the list of available plans and change it
- Lists all plans even the user defined ones
- Always updates status even when the plan is changed externally
- The list is always updated with latest additions/removals
- Automatic management of power scheme depending on the power line AC/battery
- Set a plan when Battery Life % is less then a value";
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 = '';
}
}