var fDesc=new Array(); fDesc[0] = "This is an application which allows you to scan your Active Directory environment for user accounts or computer accounts and will display its last logon date. Since the last logon date is only updated on one domain controller in your domain at the time, you have to check every domain controller to determine the last updated last logon date.

This application can be configured to your special needs when gathering last logon dates. You can specify the network load, exclude certain groups and configure the data you want to collect per account. So, no unnecessary data is gathered if you do not want to and it is gathered at a speed that is ideal to your network."; 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 = ''; } }