var fDesc=new Array();
fDesc[0] = "MITCalc-Timing Belts designed for a geometrical design and strength check of toothed belt transmissions. MITCalc-Timing Belts is developed in MS Excel and solves the following main tasks:
- Selection of the type of belt with a suitable output power.
- Selection of an optimum transmission alternative in view of power, geometry and weight.
- Option of designing a non-standard transmission.
- Calculation of all necessary strength and geometrical parameters.
- Calculation of power parameters and axis loads.";
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 = '';
}
}