var fDesc=new Array();
fDesc[0] = "VersaTimer is a simple, yet very powerful, timer application that runs on Windows 95/98/Me/NT4/2000/XP. It has some unique features that makes it different from other timers:
* Can perform "actions" with cyclic intervals, for example playing a custom sound every minute.
* Up to three different rules for each timer, which means three different actions can be performed, with three different cyclic intervals, depending on how far the timer has counted.
* Can announce the time left with a sampled voice (in English).";
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 = '';
}
}