var fDesc=new Array();
fDesc[0] = "Uconeer is the ideal unit conversion calculator for engineers, scientists and technicians. If you need to have fast, accurate and consistent conversions at your fingertips then download the free, fully functional evaluation version to test all these capabilities:
- 450 units in 48 categories, plus add your own custom units.
- All compound conversion factors use the same underlying factors for consistency across all conversions.
- Keeps your recently used categories visible for single click selection.
- Mark your favorite conversions for instant use.
- Remembers the last conversion you used in each category.
- Special converters for dynamic to/from kinematic viscosity, feet & fractional inches, mass/volume flowrate, steel hardness and Reynolds Number.
- Flexible and powerful formatting, including scientific and engineering notation.
- Online calculator during data entry.
- Instant swap of From and To units.
- Comprehensive online Help function.";
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 = '';
}
}