var fDesc=new Array();
fDesc[0] = "Effective Checklist. Create tasks for all your projects and chores fast. Set sticky notes and pop-ups as reminders.
Main features:
-You can quickly and easily enter new tasks. The information is shown in a grid that customizes itself against the size of the screen.
-Modifying these via an enhanced dialog also allows more data to be entered, such as rich text notes.
-You can set pop-up reminders against any task. These can then be turned into sticky notes.
-A new printing dialog means printing is now so much more customizable and easier to obtain good results. Therefore, less wasted paper.";
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 = '';
}
}