var fDesc=new Array();
fDesc[0] = "MC Musiceditor is a free (GPLv2 or above) music notation software (Windows/Linux under Wine). It has been developed with only one purpose: to make life of musicians easier when making scores. This results in a user-friendly editor which makes professional scores without requiring specific knowledge (other than musical basics). In short: MC Musiceditor is the easiest way to write, refine, hear and print professional scores.
Main features:
- Note entry by mouse clicks, keyboard short cuts or just typing
- Chord entry by mouse clicks
- Export to PDF
- Export to Midi
- Previewer
- Pitch manipulations (transpose, pitch converter)
- Format functions (score, midi)
- File functions (rename, merge).";
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 = '';
}
}