var fDesc=new Array(); fDesc[0] = "DKNoteMinder is a small organizer for your notes and functions like a mini wordpad for taking notes. Typical operations supported are: cut, copy and paste (for graphics, pictures and text), change font colors, type face and the size of text, find and replace and web link detection.
The purpose of this program is to keep your notes always in view no matter what you are working with."; 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 = ''; } }