var fDesc=new Array(); fDesc[0] = "GloboNote is a free and easy to use desktop note taking application. It lets you create sticky notes, to-do lists, journals, reminders and other notes in one place. There are no limits to the number of sticky notes you can create. Notes can be organized by groups and search using the search tool."; 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 = ''; } }