var fDesc=new Array(); fDesc[0] = "Sundog is a MIDI chords and melodies laboratory that can be used to experiment with new scales, harmonies, and melodies easily. This application is designed to work with all major DAWs. All note output happens via MIDI. Even without a virtual MIDI cable you can create new songs and phrases, as Sundog can export MIDI files directly to other programs."; 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 = ''; } }