var fDesc=new Array(); fDesc[0] = "Define Extension is a browser add-on that enables you to easily look up the meaning of words from the English dictionary. The program allows you to highlight a word to look up it's meaning when you are surfing on the Internet. You can also receive definitions from the dictionary of the specific words."; 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 = ''; } }