var fDesc=new Array(); fDesc[0] = "Scientific Calculator Decimal is programmed in C# and is similar to Scientific Calculator from Math Center Level 2 except that all calculations are done in decimal data type instead of double. Each calculator has its own advantages. Data type double can operate numbers with large exponent and decimal data type has twice longer mantissa. That is double has about 14-15 digits and decimal has 28-30 digits."; 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 = ''; } }