var fDesc=new Array();
fDesc[0] = "This program can log any band DC to Light County Hunter logbook.
Main features:
- supports 98SE thru Win7 OS
- more than 345 contests and activites are supported
- does not control radios or rotors, no networking or packet, and does not encode or decode the PSK/RTTY/Digital modes.
- writes STF log files for selected DARC contests.
- writes EDI log files for R1 VHF/UHF contests.";
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 = '';
}
}