var fDesc=new Array();
fDesc[0] = "Lambda Predict makes it easy to build system configurations for analysis based on the MIL-HDBK-217-F (MIL-217), Bellcore/Telcordia or NSWC Mechanical reliability prediction standards. The software provides a complete array of calculated results for your analyses (failure rate predictions, MTBF predictions, etc.) along with graphical charts and customizable reports. Lambda Predict offers a full set of supporting tools, including a reliability allocation utility, derating analysis and the ability to transfer and manage your data via flexible import/export utilities.";
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 = '';
}
}