var fDesc=new Array();
fDesc[0] = "Innovative solution for monitoring and managing your computers using a securely encrypted mobile app that gives you total control of your systems from anywhere, anytime.
The application will work even if the PC or Server cannot be directly accessed from the Internet, i.e. does not have a routable IP address or sits behind a firewall. The application communicates with the server using a secure encrypted connection and the PC application installs as a service and it starts automatically when your PC starts.";
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 = '';
}
}