var fDesc=new Array();
fDesc[0] = "LoopBe1 - Internal MIDI Port is an internal MIDI device for transferring MIDI data between computer programs. It may be considered an "invisible cable" to connect a MIDI outport of an application to any other application´s MIDI inport. All MIDI data sent to the program´s output is channeled to the receiving applications in realtime.
You may connect up to 8 applications to LoopBe's inport and up to 8 applications to the outport, all sending and receiving at the same time.";
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 = '';
}
}