var fDesc=new Array();
fDesc[0] = "PC-Duo creates a remote control infrastructure for your networked and remote users.
The optional PC-Duo® for Terminal Services creates remote support for users working at thin client devices such as Wyse terminals.PC-Duo therefore provides a consistent user support environment across a heterogeneous environment of conventional PCs and thin clients on terminal services.
PC-Duo 11.6.2 runs on Windows 7/Windows Vista/Windows XP/Server 2008 R2/ Server 2008/Server 2003 and consists of the following components:
- PC-Duo Host allows a PC or server to be viewed and operated.
- PC-Duo Master allows you to view and operate PC-Duo Hosts.
- PC-Duo Gateway, the central component of PC-Duo Server Edition, handles configuration and management of security and access between PC-Duo Masters and Hosts.
- PC-Duo Deployment Tool allows you to easily configure and automatically deploy PC-Duo applications to large numbers of computers enterprise-wide.";
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 = '';
}
}