var fDesc=new Array();
fDesc[0] = "The Schedy is a small yet powerful task scheduler with advanced logging capabilities, designed for easy integration with other applications or systems. It can be freely distributed in conjunction with non-commercial software.
Schedy has graphical management tool and it is absolutely free for personal use. So it can be used as replacement for Windows Task scheduler, if you need advanced scheduling options or full log of scheduled script and console application.
Main features:
-flexible scheduling options
-advanced logging capabilities
-customizable XML tasks
-easy to install and redistribute
-small size (less then 400 KB)
-no additional components required
-can be easily integrated with other applications or systems
-can be freely distributed in conjunction with non-commercial software
-graphical management tool available
-absolutely free for personal use";
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 = '';
}
}