var fDesc=new Array();
fDesc[0] = "VNC Central is a server/client application that semplifies management management of remote computers, expecially groups of computers.
Pratically it allows you to launch applications, locally or remotely, replacing automatically the ip in the application parameters with the one belonging to the local pc (if you ask vnc central to launch the application on a remote computer) or with the one belonging to the remote pc.
-keep track of connected customers and take control of their computer when you need to
-run a manteinance applications";
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 = '';
}
}