var fDesc=new Array(); fDesc[0] = "ToDo2x2 is a Windows application that can help you to quickly save and find different kind of "information" you may need in your job or at home:

- notes
- things to remember

These are the main features:

- find quickly all the items containing one or more specific words
- easily check all what you have to do
- set deadlines as simple or recurrent date (every week, every month, ...)
- use items encryption for sensible data (standard AES symmetric algorithm)
- exchange items with other people having ToDo2x2
- drag a file into an item to have a link to the file itself
- use/create custom skins
- available languages: english, german, russian, italian"; 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 = ''; } }