var fDesc=new Array();
fDesc[0] = "ARMD is a software package that allows you to analyze any bearing, rotor/bearing system, or mechanical drive train. The package consists of five main modules: Rotor Dynamics, Torsional Vibration, Fluid-Film Bearing Analysis, Rolling-Element Bearings and Lubricant Properties Calculation. The program incorporates advanced technical and user interface features with build-in help utilities in each of its modules to simplify modeling, analysis, presentation, and interpretation of results.";
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 = '';
}
}