var fDesc=new Array();
fDesc[0] = "PSRMIDI is a tool that scans GM, GM2, XG and XF MIDI-files of format 0 or 1, style-files for Yamaha-keyboards and Cakewalk XG-SysEx bank-files. You will get an interpretation of all elementary midi-events included. The program has been developped to get knowledge about the interior of the songs which are produced by the Yamaha keyboards with its special XG-SysEx and voices, but it can also be applied with all other XG, GM and GM2 MIDI-files. The type of protocolled events can be selected by filters. There is no manual needed with the program.
SysEx bank-files are binary files with the extension .syx, including a sequence of SysEx-bytestrings. The files are created with Cakewalk.
In the listing you will find the time- and byte-position of each event, the message in hex and the textual interpretation of the message. If you want to learn something about the structure of midi-files, PSRMIDI will be useful.
PSRMIDI is programmed with Visual C for Windows. The program gets informations from a Cakewalk instrument-definition-file (.ins), which should be selected to get better interpretations.";
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 = '';
}
}