var fDesc=new Array();
fDesc[0] = "A Wattmeter that is Outstanding in Functionality with NIST Traceable Accuracy.
ALC-1 - ALC protection option, shuts down your transmitter fast but yet allows ALC normal operation.
FASTEST Bar graph on the Market, makes tuning an amp or a tuner a joy, faster than an analog meter. So fast it can catch the first "dit" at 99 WPM and even show you if your rig has a RF spike problem.";
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 = '';
}
}