var fDesc=new Array(); fDesc[0] = "Cloudy Calculator is a calculator for Chrome that handles many of the same kinds of calculations as Google does. In fact, if Cloudy Calculator can't handle a calculation, it asks Google for the result (you'll see a little "G" to the left of those calculations). It has a scrollable history of previous calculation, and you may also use up/down arrow keys to access input history."; 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 = ''; } }