var fDesc=new Array();
fDesc[1] = "screen and a small window appears with the relevant text translation, information or conversion that you need without interrupting your workflow.";
fDesc[2] = "automatically detects and installs the most recent version of operating software for your compatible Garmin GPS. WebUpdater's simple interface makes it easy to upgrade your operating software. Just connect your Garmin GPS to your computer, run WebUpdater, and follow the screen prompts. After confirming that you want to perform an update, WebUpdater will download that update for you and install it on your GPS. WebUpdater always checks for its own update first before performing a unit update. Unlike previous versions, you no longer need to download Web Updater everytime you upgrade your unit software. Once installed, simply run it from your computer —no need to download anything else yourself.";
fDesc[3] = "will be able to convert any unit of measurement into another on the same group. For example, you will be able to convert from centuries into hours when you are using the time converter.";
fDesc[4] = "conversion categories, such as Numbers, Prefixes, Data Storage, Data Transfer, Length, Angle, Area, Volume, Volume - Dry, Time, Velocity, Acceleration, Velocity - Angular, Mass, Density, Force, and much more.";
fDesc[5] = "a PC onto a wrist unit along with the logos as well. It has many fancy operations such as provisions for creating customized logos for personalizing the wrist unit, and the user can even edit or transfer the settings onto the Polar product with great ease.";
fDesc[6] = "measurement from one into another almost instantaneously. This great software supports a lot of units of measurement and it is very easy to use.";
fDesc[7] = "every unit of measurement from one to another in a short time. The program counts with a extremely easy-to-use and simple interface. It will guide even first-time users to convert from one unit to another without any problem.";
fDesc[8] = "measure in 21 categories. This program designed not only for the professionals (students, teachers, scientists), but also for ordinary users.";
fDesc[9] = "different units into others in a very easy way. The program will convert any unit of measurement almost automatically. It has got a friendly interface that will guide you on how to convert from one into another.";
fDesc[10] = "allows you to convert values between a number of common (and not so common) Engineering-related units.";
fDesc[11] = "from one into another in a glimpse of an eye. All you have to do to convert the units is to select the input unit, type down a number and then select the output unit and the program will convert and display the result almost automatically.";
fDesc[12] = "All you have to do to convert the available units from one into another is to choose the unit you want to convert, type a number on the program's screen and then select the output unit.";
fDesc[13] = "of, divided in the following categories: Length, Area, Temperature, Energy, Mass, Time, Speed, Power, Pressure, Volume and Density. Also, it allows the user to add and/or edit the conversion tables.";
fDesc[14] = "units and measurements, including weight, length, volume, area and more.";
fDesc[15] = "program is free so you can't complain if it doesn't support a lot of units of measurement. Luckily, that is not the case. This program supports a lot of categories and units of measurement.";
function tCollapseAll(maxID)
{
document.getElementById("alls_action").innerHTML = "Expand descriptions";
var id=1;
for (id=1; id <= maxID; id++)
{
if (document.getElementById("desc_" + id))
tShowHide(id, 2);
}
}
function tExpandAll(maxID)
{
document.getElementById("alls_action").innerHTML = "Collapse descriptions";
var id=1;
for (id=1; id <= maxID; id++)
{
if (document.getElementById("more_" + id))
tShowHide(id, 1);
}
}
function tShowHide(id, show)
{
var s = document.getElementById("more_" + id);
if ((s.innerHTML!=fDesc[id] || show==1) && show!=2)
{
s.innerHTML = fDesc[id];
}
else
{
s.innerHTML = '...';
}
}