var fDesc=new Array();
fDesc[0] = "Advanced Task Scheduler lets you run various tasks on your Windows PC at specific intervals or time periods. It can automatically run programs, kill processes, set-up dial-up connections, hang-up dial-up connections, download/upload files, copy/move files, compress/decompress archives, etc. It can also run Perl/Python scripts and perform SQL database operations.
Advanced Task Scheduler is also available in a Professional edition with hibernate/standby, passwordless authorization, e-mail logging, and other advanced 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 = '';
}
}