var fDesc=new Array(); fDesc[0] = "This Program allows you to navigate your game by using your own body as a joystick. You can move your body to the left and right to turn in those directions. And to the front and back to go forwards or backwards. There are many options to calibrate the camera input to optimize the precision of the camera input. Both keyboard and mouse input can be emulated. This program is developed to have minimum impact on your cpu usage so your games performance is not going down."; 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 = ''; } }