var fDesc=new Array(); fDesc[0] = "WhatNext is a ToDo Application, solely designed to keep track of the things you have todo. WhatNext helps to keep track on your tasks in a convenient and transparent way. The ToDo items are colored with respect to the item type, to provide the relevant information on the fly.
WhatNext organizes all your todo's in a list form, and visualizes the status of those items by colors or different font styles."; 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 = ''; } }