var fDesc=new Array();
fDesc[0] = "Specops Gpupdate Professional is the full-featured version of Specops Gpupdate. It allows you to manage any part of your network from a single location. This program extends the functionality of Active Directory Users and PCs and can be used to perform various tasks for a selected computer, or multiple computers within an organizational unit.
Gpupdate Professional helps you instantly refresh group policy settings, update Windows software on remote systems, shut down / wake up / reboot /ping remote systems, send message to network PCs, etc.
A free version of Gpupdate is available for users who do not require the ping, messaging, and other advanced features.";
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 = '';
}
}