var fDesc=new Array();
fDesc[0] = "Play the ukulele chords right away - no experience required!
Take advantage of clear, easy-to-use interface with retina support and learn the major chord charts.
You can: - see the chords in standard representation, in TAB-representation and as coloured photos,
- listen to the sound the chords you picked,
- drag and drop pictures with chords to your documents,
- create, save and load chords of your favourite songs,
- avoid the Mickey Mouse voice and transpose the chords to level which is optimal for your voice.
Have a lot of fun making music!!!";
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 = '';
}
}