var fDesc=new Array();
fDesc[0] = "What you can expect in the future: option for left handed guitarists, metronome, tuner, play scale notes functionality.
This app is free and I'd like it to stay free. If you however want to show your support by making a donation, please do so.
When AIR was still Apollo I created a first rough version with a standard Flex look. Now that AIR 1.0 has been released it was time to do it properly.
This application lets you pick a scale and draws it on a virtual fretboard. You can change the number of strings & frets, the tuning, the visible intervals, pick scale chords and lots more.";
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 = '';
}
}