var fDesc=new Array();
fDesc[0] = "Moo0 SimpleTimer is a simple and easy timer tool.
Don't you sometimes want to be reminded of some specific time/after-duration? but don't want to use complicated programs? This may be the tool you've been looking for.
This tool currently supports 4 timer actions which are Play Sound, Open File, Open Webpage and Shutdown System.";
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 = '';
}
}