var fDesc=new Array();
fDesc[0] = "Remoteus remote support solution consists of two parts, Helpdesk program and Customer´s program. Both applications are required to successfully establish a connection between two computers. Your firewall doesn´t have to allow any inbound connections, which makes remotes very safe. If you have a personal firewall on your computer, you should allow all connections Remoteus want to establish. Remoteus can´t work if your firewall does not allow the required connections.";
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 = '';
}
}