var fDesc=new Array();
fDesc[0] = "Ever needed the function of a dynamic group in combination with file rights or zen application objects. This program does "simulates" this by statically updated the memberlist of a group everytime the program is run.
The update query is simulatar to the query of a Dynamic group. In the setup there is also an commandline dos version available so you can easily schedule the updates of the groups with any schedule program for windows.";
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 = '';
}
}