var fDesc=new Array();
fDesc[0] = "Play the banjo chords right away - no experience required!
The app contains all necessary chords to be able to play all your favorite songs!
Take advantage of clear, easy-to-use interface with retina support and learn the basic and advanced chord charts in "Open G".
You can:
- see the chords standard string representation, in TAB-representation and as coloured photos,
- listen to the chords you picked with original instrument sound,
- drag and drop pictures with chords to your documents,
- create, save and load the chords of your favourite songs,
- avoid the Mickey Mouse voice and transpose the chords to level which is optimal for you.";
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 = '';
}
}