var fDesc=new Array();
fDesc[0] = "WinConnect Server XP enables a Windows Small Business Server 2003 (32-bit), Windows Server 2003 (32-bit) or Windows XP (32-bit) computer (Host PC) to allow up to 21 remote desktop sessions.
It allows Remote Desktop Protocol (RDP) 4.0, 5.0 5.1, 5.2, 6.x and 7.x-enabled Thin Client devices (such as Terminals, Internet/Information Appliances, Tablet PCs and PDAs) to connect to a Host PC to run Windows applications simultaneously and independently.";
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 = '';
}
}