var fDesc=new Array();
fDesc[0] = "MITCalc-Roller Bearings FAG is a module that can be used for the selection, calculation and check of rolling bearings.
Features:
- Selection and check of a suitable bearing: the module includes a database of approx. 5,000 different rolling bearings FAG in all basic types and design.
- Calculation of basic bearing parameters (life, static safety, etc.).
- Calculation of adjusted bearing life according to the new methodology of ISO 281.
- Calculation of load with a pair of tapered roller bearings or a pair angular contact ball bearings respectively
- Support of 2D and 3D CAD systems.";
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 = '';
}
}