var fDesc=new Array();
fDesc[0] = "Better DS3 is an offline MotioninJoy driver configuration tool. You can configure almost all the functions of the controller including LED assignment, vibration strength, Keyboard/Mouse mappings, and PCSX2 pressure sensitivity. This program is compatible with MotioninJoy driver 0.7.1001.";
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 = '';
}
}