var fDesc=new Array();
fDesc[0] = "WiFi Remote is a powerful software that enables smartphones to remotely control PC/Mac or Linux computers over the network.
Features:
-Beautiful and unique GUI, offers an easy to use workflow and highly polished visual cues.
-Servers are Compatible with Microsoft Windows, Mac OS X and Red Hat Linux
-Clients available for Nokia,Samsung, Android, LG and Blackberry smartphones
-Use your smartphone as a Trackpad, a mouse and a keyboard
-Easy to navigate between Trackpad and Keyboard functionalities
-Secure Verisign Signed Server and Client Software to ensure security
-Ideal for giving Microsoft PowerPoint or Apple Keynote presentations";
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 = '';
}
}