var fDesc=new Array(); fDesc[0] = "GNotes Extension is a Google Chrome extension of Gnotes. GNotes is a note taking app that helps you organize your life much more easier. This extension allows you to add notes quickly on any page, capture current page as a attachment to the note, create notes with the selected text, and more."; 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 = ''; } }