var fDesc=new Array();
fDesc[0] = "Auto Shutdown Timer - EasySleep is simple and easy to use software that shutdown your computer automatically at a time period you choose. You can fall asleep while listening to your favorite music without having to worry about shutting down your computer.
Features Include: Diminuendo - Auto reduce the speaker's volume constantly (Unique Feature), Run File - Run an EXE or Batch file on time (Unique Feature), Auto ShutDown - Auto shuts down the system and power off the computer (your system must support the power-off feature), Auto ReBoot - Shuts down the system and then restarts the system.";
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 = '';
}
}