var fDesc=new Array();
fDesc[0] = "PM1D Manager takes full control of your keyboard and customize it just how you want it.
By using PM1D Manager, you can create various types o settings even when you are away from the console, and use a memory card (*) or other means to load settings into the console at a later time. In addition, you can conect the console/engine DSP1D-EX {DSP1D}) to you PC, and use it to control the entire system in the same way as from the console.";
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 = '';
}
}