var fDesc=new Array(); fDesc[0] = "This Widget provides the quick and easy way to manage your day-to-day tasks. Create new tasks in just a few clicks, and customize your view. The list of tasks can be also synchronized with Microsoft Outlook even when Outlook is not running. The widget will not take much space on your screen, and all the day tasks are displayed on the main window. New tasks can be added by simply typing on the widget itself. A duplicate finder can be accessed that will make sure that Outlook does not have any duplicate entries."; 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 = ''; } }