var fDesc=new Array();
fDesc[0] = "RootCam is a remote support application that allows you to connect and control another computer over Internet. It has all the features expected from a program of its kind: desktop sharing, text chat, file exchange, command prompt and more.
RootCam easily connects to a remote computer located behind a firewall. There is no need to make any adjustment. You simply launch the program and it's just one click away from your remote partner.";
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 = '';
}
}