var fDesc=new Array();
fDesc[0] = "Cyber Monitor is a professional billing, monitoring and management system for Internet cafes, libraries, schools, hotels and other institutions that provide computers for public use.
Cyber Monitor is a client-server system and consists of two components: the server and the client component. These components are provided as separate installation files and should be installed on at least two different networked computers.";
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 = '';
}
}