var fDesc=new Array();
fDesc[0] = "The Thrustmaster Calibration Tool software allows you to carry out manual calibration (which will replace the automatic calibration) on:
-The steering wheel of your racing wheel
(in order to center it perfectly and obtain the maximum left and right values)
-The pedals attached to your racing wheel
(in order to eliminate any potential dead zones)
-The mini-sticks on your gamepad
(in order to center them perfectly and eliminate any potential dead zones)
-The different axes on your joystick
(in order to center them perfectly and eliminate any potential dead zones)";
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 = '';
}
}