var fDesc=new Array();
fDesc[0] = "HIDPoint Media Server is installed on the computer you want to control from your iPhone/iPad/iPod Touch.
Features:
- It allows your iOS devices to communicate with your computer.
- HIDPoint Media Server for windows comes with a wizard based installer, which makes installation a breeze.
- Runs as a system tray application
- Access to the computer from the device is password protected.
- All communication to and from the device is encrypted.
- Publishes the service over Bonjour
- Option to turn off File Browser
- Multiple users can simultaneously interact/control the computer.";
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 = '';
}
}