var fDesc=new Array();
fDesc[0] = "A handy utility that was designed in order to help you keep track and manage all your hardware and software resources.
Main features:
- Get information of all computer software and hardware in the company network automatically
- Automatic monitoring network machine software and hardware change information
- To provide rich property report
- Powerful inquiry function
- Network procedure distribution/installment, including and so on patch management
- Cross platform to install contact surface
- Multi-country language version
- Rich kind of report
- Update client side automatically
- Platform localization user interface";
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 = '';
}
}