var fDesc=new Array();
fDesc[0] = "This is a neat, easy-to-use patch editor for the Boss ME-25 guitar multi effects and Roland GR-20 guitar synthesizer. The software allows for desktop tweaking and editing of the ME-25 internal parameters, making patches a lot easier to create.
Main features:
- A Boss ME-25 patch editor which provides on screen graphical editing of the ME 25 internal parameters and settings without having to bend over to navigate the units cryptic menu's, knobs and buttons.
- Copy, Paste and Clipboard functions make patch editing easy.
- The Roland GR-20 editor is only in beta stage and the project for this was abandoned due to the GR-20's restricted midi implementation.";
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 = '';
}
}