var fDesc=new Array();
fDesc[0] = "K-Tuner is an audio frequency analyzer, mainly purposed for tuning musical instruments. It has some extra functionality for guitar players, but it's well suitable for any instrument - no matter acoustic or electronic.
K-Tuner reads streaming audio data and analyzes it to find out the current frequency. Frequency and it's equivalent musical note are then printed on a digital type of screen, amongst some other details.
System Requirements:
* Windows 2000 or XP
* DirectX compatible audio host application, e.g. Cakewalk Sonar
* MS DirectX 8.1 or newer
Analog type of meter is used to find out the distance from a clean note.
"Lock" buttons and fretboard led panel help guitar players to quickly and accurately tune their instrument.";
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 = '';
}
}