var fDesc=new Array();
fDesc[0] = "Veedid Desktop To-Do List is a handy todo lists management tool for Windows XP/Vista desktop. With it, you can organize your personal to-do list easily, share business to-do list in workgroup.
The intuitive interface makes adding, deleting and editing tasks comfortable, a novice can master it immediately.
With Veedid Desktop To-Do List , you won't feel overwhelmed by the amount of work. You won't face a constant barrage of looming deadlines. And you won't forget to do something important!";
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 = '';
}
}