var fDesc=new Array();
fDesc[0] = "This is a transceiver for M0KGK SDR Decoder Software "KGKSDR".
Features include:
- Transmit and receive functions
- CW, SSB transmit with receive only for AM and FM
- Semi or full breakin operation for CW
- Variable filter widths
- Spectrum display
- DSP functions such as auto notch and noise reduction
- Manual or auto calibration for receive
- Manual calibration for transmit with high image suppression
- RF speech clipper and noise gate for transmit
- Recording function
- Uses ASIO based soundcards";
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 = '';
}
}