var fDesc=new Array();
fDesc[0] = "A librarian, sound creation and compositional tool for the Korg Oasys synthesizer ! For Windows 95/98, ME, NT4, Windows 2000, Windows XP and Vista.
Features:
- A full PCG Librarian ( only enabled for Oasys Programs – not Combinations, Drum Kits, Wave Sequencer or Global mode.)
- The ability to send program data to Oasys edit buffer to change sounds
- Change Program and Combination Bank/Number from the PC
- Play the Oasys from the PC keyboard
- Facility to print or copy to windows clipboard complete PCG ‘sound’ lists
- Midi Settings
- Tutorial and Help.
- User interface based upon the Oasys Control Surface.
- Supports German/Austrian PC keyboards.";
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 = '';
}
}