var fDesc=new Array();
fDesc[0] = "Personal Composer is a powerful music notation, MIDI, sequencing, and publishing program which provides spectacular usability with professional results.
Features :
-Notate as you play a MIDI instrument, with a
program-supplied metronome.
-Record one staff while playing back others.
-Type lyrics directly onto the score.
-Align lyric lines globally or syllable-by-syllable.
-Create and position titles, copyright notices and other text.
-Select and place chord symbols and/or fretboards easily.
-Transpose, rebeam and apply other changes
to music with a single command.";
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 = '';
}
}