var fDesc=new Array(); fDesc[0] = "GiMeSpace Cam Control Gamer's Edition 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 forward or backward. The program has a calibration system that allows for a smooth recognition of your movements. The movements are translated to keyboard, joystick or mouse emulation depending on what kind of input your game needs. Mouse emulation can be either in absolute movements or relative movements depending on how much your body is moving. The keyboard emulation can emulate normal keyboard input or Direct Input for DirectX games."; 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 = ''; } }