var fDesc=new Array(); fDesc[0] = "This Chrome extension highlights the Google search keywords in web pages. This way you can instantly find the relevant parts of a page. The screenshot shows the Wikipedia result after searching for the term "World Peace" with Google. The arrow in the screenshot points to the button that enable/disable this functionality."; 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 = ''; } }