var fDesc=new Array(); fDesc[0] = "This program is a powerful and easy to use calculator which helps the users to save time and gives them the information they need on their fingertips. This tool is available online and as free desktop application. IT has 4 and 5 digit format with instant input-output calculations."; 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 = ''; } }