var fDesc=new Array();
fDesc[0] = "e-Todo is a little but useful utility, which can remind you your unfinished tasks.
Key feature:
-Always on top, give you facilities for reviewing.
-Minimize to just a bar when double click the title.
-Remind you when predefined time arrives. Alert methods include: Play background sound, flash title, or pop up a message box
-Keep tasks for as long as you want, and done-tasks can be recycled.
-Can be loaded at startup";
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 = '';
}
}