var fDesc=new Array();
fDesc[0] = "Elusiva Remote Desktop client allows running Windows® applications from various access devices including laptops, desktops, tablets and smartphones. Use Elusiva's free rdp client for access from legacy Windows, Apple OS X and iOS, Google Android, Linux, HP webOS and other platforms.
Features:
- RDP 4.0, 5.0, 5.1, 5.2, 6.0, 6.1 and 7 compatible
- Copy and Paste via clipboard
- Encryption for communication security
- Local drive mapping
- Serial and parallel ports redirection
- Local printers
- Cut and paste via clipboard
- Up to 24-bit color
- Local audio";
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 = '';
}
}