var fDesc=new Array();
fDesc[0] = "Advanced Application Restarter is a simple application that allows you to restart any application on pre-scheduled intervals.
Advanced Application Restarter is a very easy way to make sure that your mission critical applications are up and running.
Advanced Application Restarter main features:
Allows to restart any windows application;
Has powerful built-in scheduling;
Will restart application even if it hang;
Will restart application even if it displays Save or Confirmation dialogs after pressing Alt-F4;
Can be minimized to system tray;
and more...";
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 = '';
}
}