var fDesc=new Array();
fDesc[0] = "A ham radio contest log program that features a software-defined radio (SDR) bandscope. The program is written using Qt and is dual-platform, running in Linux and Windows.
Features:
-Two-radio (SO2R) support. Headphone and radio switching via parallel port
-Uses hamlib for radio communications
-Currently supports soundcard based SDR interfaces (Softrock, etc). Requires 96 KHz stereo soundcard
-CW generation via Winkey";
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 = '';
}
}