var fDesc=new Array();
fDesc[0] = "BobMeters is a CAT Software collection specifically designed for PERSEUS and PowerSDR to add classic feel to these SDR radios.
BobMeters is for PowerSDR only, it adds a selectable analog instrument as S-meter, Power output, SWR and ALC, Input Voltage and Temperature, for the transceivers series FLEX-5000A and FLEX-3000.
BobS-meter is an analog S-meter for PowerSDR and PERSEUS.
BobMeters uses a Virtual COM port to connect your radio software
and, using the CAT protocoll , they acquire the parameters.
Enter the Setup, configure your ports and press Start";
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 = '';
}
}