var fDesc=new Array();
fDesc[0] = "DSPWin is a free Windows™ application program for the HAL DSP-4100/2K supporting all modes of the DSP4100/2K including: CLOVER 2000, SITOR, P-Mode, and FSK (ASCII and Baudot).
DSPWin includes built in file compression routines. When sending data files with CLOVER 2000 the compression routines compress the file to a size most efficient transfer over a radio link. Text file can be compressed many times their normal size.";
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 = '';
}
}