var fDesc=new Array();
fDesc[0] = "Moccatroller is a remote desktop/remote control application for mobile devices, supporting bluetooth and internet connections.
Moccatroller has two parts: a Java application that runs on your PC or laptop, and a J2ME application that runs on your phone or PDA. The PC application requires a Java Runtime Environment, available for free from java.com or already installed on your computer.";
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 = '';
}
}