var fDesc=new Array();
fDesc[0] = "RC Trackpad runs on your iPad or iPhone and communicates over Wi-Fi with a free server program called Conductor Server running on your Mac or PC. You may install the Conductor Server on as many computers as you like.
RC Trackpad was built from the ground up to be secure, all network traffic is encrypted over SSL with industry leading technology.
RC Trackpads's powerful, yet easy to use interface works in any orientation. Switching modes is as easy as tapping an icon or performing a gesture.";
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 = '';
}
}