var fDesc=new Array(); fDesc[0] = "This small program allows you easily attach virtual post-it notes to your windows desktop. You can choose individual visual appearance for each note.

Not overloaded with huge number of features it have nice and intuitive interface and consume minimal system resources.

For quick access program put icon in system tray.
To add new note just double click program icon in tray. If you will hold down SHIFT key while double click icon, new note text will be set from clipboard content. Existing note can be edited by double clicking on it."; 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 = ''; } }