var fDesc=new Array();
fDesc[0] = "Friendly Network Inventory - is a powerful and user-friendly application, allows to audit software and hardware components installed on the computers over the network.
* Automatic and centralized information collection;
* Various reports;
* Data changes log;
* Tracking installation of games, equipment changes, etc.;
* Automatic e-mail notification about changes;
* Exporting into TXT, SQL, HTML, Web-site, databases;
* Scheduler for automatic exporting;
* Collection control;
* Journalizing of repairs, upgrades, etc.";
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 = '';
}
}