var fDesc=new Array(); fDesc[0] = "Group Manager Free Edition allows end users to manage group membership. This app is intended to be used by smaller organisations where users only manage a single group, or by anyone that wants to test the application out before purchasing the standard edition. It is only able to manage a single group (if the user is a manager of more than one group then a warning will appear and they will only see the first group found) and the user is also not able to change any of the program options (manually or via Group Policy) or add new members from other domains."; 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 = ''; } }