var fDesc=new Array();
fDesc[0] = "WeeWheel is an application that uses the built in accelerometer to detect movement and convert it into joystick, mouse and/or keyboadr signals for your PC, so you can play games by only moving your phone!
Main Features:
- Remote joystick emulation with an acceleromenter through Bluetooth
- Up to 8 Josytick button emulation through phone's keypad
- Mouse & Keyboard emulation!
- Macro: Record and play phone actions!";
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 = '';
}
}