var fDesc=new Array();
fDesc[0] = "RM Client Connect provides an upgrade to the RM Management Console to allow both the integration of Microsoft®'s latest operating system, Windows Vista™ and thin client stations on to your Community Connect 3™ network. RM Client Connect gives you the flexibility to take your network in the direction you want.
- Expand your network by adding Microsoft® Windows® Vista™ workstations.
- Introduce a hybrid environment by adding thin client stations alongside your Community Connect 3 network, giving you a single and easy to manage network.
- Facilitate a huge range of client machines and develop your network in both directions by adding Microsoft® Windows® Vista™ and thin clients stations to your Community Connect network";
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 = '';
}
}