var fDesc=new Array();
fDesc[0] = "Just click the buttons and tune the guitar with the sound of the tuned string!
The app has:
- Mode for automatic repeating of the playing sounds,
- Original instrument sound.
- Retina display improvements
- Automatic repeating of the playing sounds
- Wikipedia information and buying hints
- 10 new pitches modes:
- Baroque,
- Scientific,
- France1859,
- New Philharmonic,
- Concert Pitch,
- Boston Symphony Orchestra,
- New Berliner Philarmoniker,
- Old Berliner Philharmoniker,
- Renaissance
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 = '';
}
}