var fDesc=new Array(); fDesc[0] = "The CDML Personal Calculator is an advanced desktop tool for every-day use. Besides the functions of a standard calculator, the CDML Personal Calculator provides users with the following features: A resizable Tape Display with user-selectable fonts 7 Memory Functions 8 Financial Functions 9 conversion modes A Scientific Expression Evaluator A Calendar A Scratch Pad (editor) and many othersThere are also many Convenience Features, such as: User-defined number of Decimal Places 2 Percentage Calculation modes and many others The conversions come in"; 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 = ''; } }