var fDesc=new Array(); fDesc[0] = "This is a dictionary extension for Chrome browser. Just double click on any word, and it will show its definition from TheFreeDictionary.com. You can also click the icon of this extension and type-in the word. TheFreeDictionary.com features plus multiple thesauri, encyclopedias, and specialty dictionaries such as financial, medical, legal, acronyms, and idioms."; 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 = ''; } }