var fDesc=new Array();
fDesc[0] = "- WheelCalc is a program for calculating spoke lengths when building bicycle wheels
- Any spoke crossing patterns possible including wheels with different cross patterns on either side of the wheel.
- WheelCalc is an accurate and inexpensive tool to calculate the spoke lengths for bicycle wheels
- WheelCalc calculates allowances for spoke stretch and wheel rim compression.
- Calculates stress and strain on spokes for given tension
- Calculates differences in tension for dished rear wheels
- Build wheels with unequal hub flange diameters and even flange hole diameters
- Build wheels with different spoke diameters, and even elasticity on either side of wheel.
- WheelCalc incorporates a context sensitive help system to explain all of the required measurements.
- Allows completed wheels to be saved as files for later use";
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 = '';
}
}