var fDesc=new Array();
fDesc[0] = "Remote PC Suite is a host application that allows you to connect your devices, running iRemote Suite software, and manipulate your desktop or notebook.
iRemote Suite 1.4 features:
- Desktop screen sharing with zooming support. This allows you to observe either complete screen or a part of it, as close as it is necessary;
- Mouse control (mouse movement, mouse clicks, tap-to-click, scrolling);
- Keyboard control;
- Master volume control;
- Fully-functional shell access. You are able to control you PC/Mac with the help of shell commands;
- Authorization feature. This feature allows you to remember your device once, so you do not have to approve each connection on the desktop.
- iOS and Android devices are supported.";
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 = '';
}
}