var fDesc=new Array();
fDesc[0] = "Touch Mouse is an application that turns your iPhone or iPod touch into a wireless trackpad and keyboard for your computer.
There are two parts to Touch Mouse:
1. The Touch Mouse app for your iPhone or iPod touch.
2. The Touch Mouse Server for your Mac or PC. Click the Download button below to download the software.";
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 = '';
}
}