var fDesc=new Array(); fDesc[0] = "Jello Dashboard is a Getting Things Done (GTD) solution for Microsoft Outlook 2003 and above. It’s a free application released under the GPLv3 open source license, and it consists of several javascript files building a global homepage for Microsoft Outlook.

Standard Outlook data are still the base of Jello Dashboard. Tasks, appointments and contacts are managed in a more comprehensive way, following the GTD methodology by David Allen.

It can work in any PC with Outlook 2003 installed, even a locked-down company machine because it does not necessarily need installation. You can extract all files to a folder, and use it. No further alterations to your system should be made."; 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 = ''; } }