var fDesc=new Array(); fDesc[0] = "To-Do DeskList allows you to create multiple notes, place them on your desktop as sticky notes, and synchronize them between computers. It proves to be very useful for busy people that need to be reminded about certain tasks.

One feature of To-Do DeskList is the program’s ability to create multiple to-do lists, each of them containing many notes. Additionally, it allows you to easily switch between the lists."; 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 = ''; } }