var fDesc=new Array();
fDesc[0] = "ExpandIT Client Manager is something called 'Session Killer' and it helps IT administrators manage NAV/Navision clients across a network.
ExpandIT Client Manager Standard and Enterprise has a console that facilitate centralized system administration of NAV users to ensure the best possible use of the number of concurrent user-sessions allowed by the NAV license. User name, computer name, and process ID are shown in a list. This enables you to identify each user of NAV clients. Furthermore, you can see which company each user is working at as well as the exact NAV version.";
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 = '';
}
}