var fDesc=new Array();
fDesc[0] = "iTRACS Physical Layer Manager (iTRACS PLM) is an enterprise application that enables accurate documentation of IT assets and their connectivity in order to assess the impact of change to the physical infrastructure in a way that is flexible, configurable, and customizable.
Features:
- Reduces the inherent risk found in any network or asset change.
- Improves the availability of assets to your users.
- Lower your operation costs.
- Meets regulatory compliance requirements.
- Simplifies the process of documenting your infrastructure through wizards, customizations, and defined processes.
- Contains extensive security controls which help administrators regulate what individual users may alter, remove, or add.";
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 = '';
}
}