var fDesc=new Array();
fDesc[0] = "IMI Fast User Manager & Reports allows you to modify and export most of user properties inside your Windows 2000/2003 Active Directory.
Key Benefits:
- No need to install ADUs (Active Directory Users and Computers)
- Small & Fast - "One File Application"
- No additional dll's, ocx, Activex, etc..
- One exe file for "everything"
- No necessary the client computer to be a domain member (limited functionality is applied)
- Fast export to txt, html, Microsoft Office Excel, Microsoft Office Word
- Supports user picture inside AD
- Predefined Reports
- Dynamic (query-based) distribution group (list)
- Data Export to XML, HTML, CSV, SQL, Microsoft Office Excel, Microsoft Office Word";
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 = '';
}
}