var fDesc=new Array(); fDesc[0] = "ConvertAll is a unit converter that allows you to combine the units any way you want.
Features:
- The base units for conversion may be either typed (with auto-completion) or selected from a list.
- Units may be selected using either an abbreviation or a full name.
- Units may be combined with the "*" and "/" operators.
- Units may be raised to powers with the "^" operator.
- Units in the denominator may be grouped with parenthesis.
- Units with non-linear scales, such as temperature, can also be converted.
- A unit list may be filtered and searched.
- Recently used unit combinations may be picked from a menu.
- Numbers may be entered on either the "From" or the "To" units side, for conversions in both directions.
- Basic mathematical expressions may be entered in place of numbers.
- Options control the formatting of numerical results.
- The unit data includes over 500 units.
- The format of the unit data file makes it easy to add additional units.
- Command line options are available to do conversions without the GUI."; 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 = ''; } }