var fDesc=new Array();
fDesc[0] = "The SystemTools Remote Control Manager (STRCM) provides a mechanism for installation, configuration, access, and uninstallation of remote control software products.
The STRCM can be used either as a standalone application or integrated into Hyena v4.3 and later versions. Full source code is also provided, under GNU licensing.";
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 = '';
}
}