var fDesc=new Array();
fDesc[0] = "The D-50 is a highly versatile instrument. The only problem users encounter is the horrible interface: you KNOW your D-50 has a certain function but you just can't find it.
Main features:
- Fully compatible with Roland D-50/D550
- Look and feel of the D-50. The D-50VE is designed to start programming from the minute you lay your hands on it.
- Fully editable with special features, not seen on the D-50 e.g. undo's, copy curves, adsr, tvf, send-receive leds, ...
- Librarian built inside. Cut and paste, drag, organize patches, ...
- Library supports single files and .d50 and .syx bank files
- Drag and drop patches";
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 = '';
}
}