var fDesc=new Array();
fDesc[0] = "The LoginPro desktop application is the easiest way to setup a network of computers for remote access. LoginPro makes it simple and easy to create a network of computers that you can access in two ways:
- Using the LoginPro application installed on your computer.
- Using your web browser and logging in at loginpro.com. Your browser does not require any software or plugins installed on your computer, only on the computer you are controlling.";
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 = '';
}
}