var fDesc=new Array();
fDesc[0] = "Remote Mouse Server is a powerful and easy-to-use application that allows you to turn your iPhone, iPad into a wireless mouse/trackpad and keyboard. This program has some great features, such as:
- Two finger tapping for double click.
- Two finger dragging for scroll.
- Function keyboard with arrow keys.
- Touchpad with vertical and horizontal orientation.
- Accelerometer based mouse.
- Works over WiFi network or 3G.";
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 = '';
}
}