var fDesc=new Array(); fDesc[0] = "AutoPowerSwitch is a little application that helps you to manage your System power options. Through it's interface you can set the time and date, aether system or application, to: shut down,stand by, restart, log off, hibernate.
This is project developed in WPF 4.0, with Simple Styles. The project is targeted to handle System's power options."; 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 = ''; } }