var fDesc=new Array(); fDesc[0] = "Todomoo is a todo manager designed to help you manage paid projects without advanced scheduling.
This program can organize projects in hierarchical tasks, in different categories.
Features:
-Cost-per-hour task option
-Multilanguage (English, Italian, Spanish, French, Portuguese, Dutch, Thai, Chinese)
-Automatic backups
-Automatic minimize to tray option
-Automatic check for updates
-Portable version too
-SQLite powered"; 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 = ''; } }