var fDesc=new Array();
fDesc[0] = "nLog Logger is for any individual weather they are a Net Control Station or just a user checking into
any of the who needs to maintain accurate records about all aspects of particular net. The following
are included:
- Comprehensive Contact Management for both check in stations and Net Control (NCS)
stations
- Interfaces with FCC data bases
- Download/update current FCC data
- QRZ Lookup
- QSL Buro support
- QSL card and label generation
- Operator can use 2 calls and track QSL cards for each
- Comprehensive Report management. All reports are customizable by the user.
- Fully customizable
- Easy to use 'point and click' Windows 32Bit interface
- Intelligent fields correct common entry mistakes
- Designed for quick entry using keyboard and shortcuts
- Field wizards help you to enter the correct information
- Store contact information for stations to recall later on
- Record stations address, comments";
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 = '';
}
}