var fDesc=new Array(); fDesc[0] = "User Manager provides basic user account creation,deletion, and maintenance for Novell NDS networks. It is NDS aware and uses standard NDS security. Some of its other basic functions inlucude changing passwords, making group assignments, chaning NDS First Name and Last Name properties, home folder verification and browsing, printing userid lists. When creating new accounts you are forced to use NDS user templates that have been previously setup by your network administrator using Nwadmin. This program was created mainly to allow experienced network administrators to give less experienced computer users the ability to do account management."; 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 = ''; } }