var fDesc=new Array();
fDesc[0] = "Sixense MotionCreator is a software application that delivers motion gameplay for virtually any published PC game. MotionCreator provides a compelling motion gaming experience for the most popular current and legacy titles across all genres.
Features:
- Motion control for 350 PC games;
- Play games your way with 5 distinct control modes;
- Free control profile updates for new 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 = '';
}
}