var fDesc=new Array();
fDesc[0] = "Item ToolKit is a program to analyze Reliability, Availability, Maintainability, Safety, and Risk of components or systems. It allows you to take a total system approach while dealing with individual systems and components. This enables the user to optimize design targets with respect to component selection, increase safety and reduce liability.
Demo installation given here is password protected. You must contact the developer to get the password.";
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 = '';
}
}