var fDesc=new Array(); fDesc[0] = "The Fairwood Calculator is a small application simulating a hand calculator on a computer. The calculator is specifically designed not to be bloat ware. This means that the calculator will do normal simple calculation very fast and efficiently with an optional keyboard driven interface form almost all operations. The calculator is also designed to load almost instantaneous on a modern computer."; 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 = ''; } }