var fDesc=new Array();
fDesc[0] = "Gear Finder is a great tool for quickly finding all possible change gears for any given gear ratio. The program finds gears for machines with four gear combination change gears.
Gear Finder features:
- Find all possible change gears for any gear ratio.
- Lets you specify the maximum allowable ratio error.
- Lets you set the minimum and maximum number of available gear teeth.
- Allows you to find change gears using only gears that you have available to you.
- Allows you to find change gears for machines with fixed shafts.
- Allows you to create a gear list (database) for up to 10 machines.
- Allows you to print out all or part of the gears combinations found.";
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 = '';
}
}