var fDesc=new Array();
fDesc[0] = "VHFCtest4Win is software for contest logging QSO's on VHF bands (50MHz and up).
It is build for all windows versions from Windows 95 and up.
Main Features:
- CW/SSB keyer (COM and LPT) support no additional driver needed for LPT support also in Windows XP and 2000
- Support for standart Region 1 VHF contests and ZRS S5 Maraton open activity
- Various statistics
- Import/Export to and from standard EDI format
- Export to ADIF and report for packet radio
- Partial call search and search by WW locator
- DX cluster support
- Band map
- CAT control for some stations including HF stations with transverter offset
- Customizable window layout
- Simple network support for multi op operations";
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 = '';
}
}