var fDesc=new Array(); fDesc[0] = "Bio2Midi is a Windows program that converts the text of a DNA or protein sequence to a MIDI file, which you can immediately audition, or import into any MIDI sequencer for further compositional processing. You can choose to listen to the sequences as 4-note DNA bases, or as 20-note protein amino acids, or both at once. Also, you can select specific data sections to be translated, called exons and introns, and mark areas of interest to be played in a different instrument."; 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 = ''; } }