var fDesc=new Array();
fDesc[0] = "Download for free
With NotePad you can quickly and easily:
singingCreate scores of up to eight instruments, including lead sheets, guitar tablature, choral music, and much more.
Enter notes, rests, lyrics, and other markings.
Hear your music play back with high-quality built-in sounds.
Share your music by printing beautiful pages and exchanging a variety of electronic files.
Find out how fun and easy it is to transform musical ideas into beautifully printed music by downloading NotePad today.";
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 = '';
}
}