var fDesc=new Array();
fDesc[0] = "The Elecraft K3 Utility helps you update, configure, calibrate, and use your K3.
The Port tab is used to identify the computer serial port used to communicate with your K3 .
The Firmware tab is used to load K3 firmware .
The Configuration tab is used to Save K3 configuration settings to a file on your personal computer.";
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 = '';
}
}