var fDesc=new Array();
fDesc[0] = "Crescendo Music Notation Editor Plus and Composition Software. Professional music notation and composition software to arrange your own professional quality sheet music using a wide array of music symbols and notes.
Crescendo Music Notation Editor Plus Features:
* Change the key signature and time signature
* Add whole, half, quarter, eighth and sixteenth notes and rests (semibreve to semiquaver)
* Compose music in Treble, Bass or C Clefs (e.g., Alto and Tenor)
* Assign sharp, flat and natural accidentals to notes
* Insert text to specify a title, tempo, dynamics or lyrics
* Drag notes to change their pitch or placement
* Adjust staff line placement by snapping them to margins or other staff lines
* Save to Crescendo's format, or export as MusicXML
* Print completed music projects, or blank music sheets for hand transcription
* Create dotted notes, chords, add repeats, and more.
Create professional music scores with this intuitive and easy to use software.";
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 = '';
}
}