var fDesc=new Array(); fDesc[0] = "Tone Guitar Tuner is a chromatic tuner for the tuning of electric and acoustic guitars on your PC using your sound card. The tuner automatically detects any note played on the guitar. The accuracy of the tuner is adjustable between 0.01 % and 10 % and the frequency is indicated by a gauge. Time and frequency graphs of the guitar input signal are also displayed in a separate window."; 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 = ''; } }