var fDesc=new Array();
fDesc[0] = "Windoff 5.0 is a fantastic freeware program will make it possible for you to indicate when you want your computer and monitor to shut down, closing each program, to a maximum limit of 99 hours, 59 minutes and 59 seconds ( this means 4 days and 4 hours). For example: you can leave your computer Internet-connected from Friday at 6 pm, and make settings so that it will shut down on Sunday.
You don´t have to stay at home, neither do you have to be awake on nighttime waiting for your computer to finish its tasks or Internet-downloading, in the same way, if you have a TV card, program WindOFF for the hours you want to watch TV from your bed without worrying about falling asleep (the computer will shut down by itself).
Also, you won't be late for dates because WindOFF will notify you with a sound alarm which you can program in the same way that you program for shut down.
Don´t worry about the state of your computer before shut down because WindOFF can capture diferent screens in JPG format (only 130 Kb each full screen) close to the programmed time.";
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 = '';
}
}