var fDesc=new Array(); fDesc[0] = "Power Plan Chooser is a small application written in C#. It runs in the notification area and allows you to quickly switch between the three standard Windows 7 power plans (Balanced, High performance and Power saver). The icon will change color based on the plan you’ve selected indicating which power plan is currently active on your system. The code for this application is available at CodePlex"; 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 = ''; } }