var fDesc=new Array(); fDesc[0] = "archCalc is a mixed unit decimal and fraction calculator. It allows one to enter dimensions in standard english and metric units of measurement, perform basic calculations, convert between units, keep track of a series of operations, and easily solve for a leg or slope of a right triangle.
archCalc works as a standalone calculator or in conjunction with other programs, calculating stair risers in CAD software, or aiding in takeoffs with a spreadsheet. archCalc floats above applications allowing one to work with it as if it were a part of the active application."; 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 = ''; } }