var fDesc=new Array();
fDesc[0] = "Guitar Chords Crash Course is a program developed for teaching guitar chords to the user. Popularly abbreviated as G3C, the application caters to the needs of a wide range of users ranging from the amateurs down to professors of the guitar. The software displays chords and scales from the chord-files, featuring over a thousand chords, 48 scales and 13 tunings. What’s more, all these chord-files are editable and the user can modify the chords as per requirements, and display the modified ones as well.
G3C has other smart features including a left-handed option and the ability to turn the fret-board upside down, a guitar tuner and editable tunings with the help of which, the user can have his/her own favorite guitar tuning and make the application to play the chords in that tuning. It also has a Tab search option which helps the user to find a tab if he/she doesn’t know the name. Moreover, the user can also print the whole chord-file in a list or make a list of chords and print them graphically. Additionally, the application also features a drum machine, which adds fun to play guitar with drums in the background. It has the option of creating and editing own drum patterns as well.";
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 = '';
}
}