var fDesc=new Array();
fDesc[0] = "Dolet for Sibelius is a program that unchains your music by letting you save your Sibelius 5 and 6 scores as MusicXML 3.0 files. You can share your music created with Sibelius with people who use Finale. It lets you exchange the vast majority of information contained in a notation file, including rests, repeats, dynamics, lyrics, slurs, tempo marks.";
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 = '';
}
}