var fDesc=new Array(); fDesc[0] = "Often you do not need an advanced text processor but a virtual scrapbook to quickly write down an occasional thought, a plan for the day or an Internet URL. With a plain text editor, which can be used for this purpose, you have to run the program first, then create a new file, then type a line or two and save the file. Too many things to do in order to simply write down a thought? With Quicknote, it does not matter which programs you are currently using; whenever you want to write something down that comes to mind, just 'wake up'"; 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 = ''; } }