var fDesc=new Array(); fDesc[0] = "A program for creating colorful sticky notes with an integrated scheduler. The application allows you to change the color of the sticker, the font and color of the text, attach a note on top of all windows, as well as hide completely. Notes can be deleted or moved to the trash. There are several types of reminders: a message in the tray, animation (vibration), and an audio signal."; 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 = ''; } }