var fDesc=new Array(); fDesc[0] = "Melanto is a calculator application for Google Chrome browser. What makes it unusual is that you can see both sides of the current binary operation. For example, if you type 2 2 you'll see exactly "2 2" until you press "=". The tool was made with touch-screen in mind and is optimized for small devices (10" tablets and netbooks)."; 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 = ''; } }