var fDesc=new Array();
fDesc[0] = "nJoy is a complete PC remote controlling solution!
nJoy includes a gaming joystick layout and a comprehensive desktop control
layout consisted of media controls, web surfing and text input options,
an efficient and easy to use mouse controls and more...!
nJoy makes use of a Wi-Fi or internet connection for communication with a PC.
Thus, the effective range of a Wi-Fi signal is not an issue.
The device's 3G connection can be used if the wifi connection is inefficient or not available.";
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 = '';
}
}