var fDesc=new Array();
fDesc[0] = "SoundTimer is simple and flexible task scheduling utility, for automating routine and repetitive tasks. It has many advantages over the standard Windows Task Scheduler:
- Execute tasks every few seconds, minutes, hours, or days
- Perform "open", "execute", "print", "queue", or other actions on documents or programs
- Easily suspend and resume individual queued tasks
- Internal sound player, with pre-emptive priority system
SoundTimer is also a unique and innovative sound effect player. With its priority-based queueing functions, Sound Timer can be used to simulate cyclical or random background noise.";
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 = '';
}
}