var fDesc=new Array();
fDesc[0] = "WinConverter is a rather straightforward application which is designed to provide as simple interface as possible for performing conversion. It is a handy utility for students, teachers, and practitioners in engineering, physics, sciences, and technical subjects.
If you find out that WinConverter lacks a unit you need, it's very easy to add your custom unit or category.
WinConverter is pre-configured to convert more than 1500 units in 78 categories.
The predefined categories include:
Mass, Length, Time, and Volume. Acceleration - Linear, Area, Data Storage, Data Transfer, Energy, Flow, Force, Numbers, Power, Pressure, Temperature, Velocity, Acceleration - Angular, Angle, Calorific Value, Concentration - Liquid Solution, Concentration - Molar, Density, Digital Image Resolution, Entropy, EU Currency, Flow - Mass, Flow - Molar, Frequency Wavelength, Fuel Efficiency, Heat Capacity, Heat Flux Density, Heat Transfer Coefficient, HVAC Efficiency, Chemical - Henry's Law, Illumination, Illumination - Luminous Intensity, Latent Heat, Luminance, Mass Flux Density, Moment of Inertia, Permeability, Radiation, Radiation - Absorbed Dose, Radiation - Activity, Radiation - Exposure, Sound, Specific Heat, Specific Volume, Surface Tension, Temperature Interval, Thermal Conductivity, Thermal Expansion, Torque, Typography, Velocity - Angular, Viscosity - Dynamic, Viscosity - Kinematic, Volume - Dry, and Volume - Lumber.
Electrical:
Capacitance, Charge, Conductance, Conductivity, Current, Electric Field, Inductance, Linear Current Density, Linear Charge Density, Magnetic Flux, Magnetic Flux Density, Magnetomotive Force, Resistance, Resistivity, Surface Current Density, Surface Charge Density, and Volume Charge Density.";
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 = '';
}
}