var fDesc=new Array();
fDesc[0] = "NetLogger is a logging program that can use the internet to transmit check-in information to other users of NetLogger. Net participants that are 'monitoring' the net with NetLogger receive updated information every twenty seconds.
NetLogger also has features designed to make logging check-ins easier. For instance, if you use a callbook program like QRZ!, HamCall, Sam Database, or Radio Amateur Callbook, information like name, city and state can be filled-in for you automatically.
There is also a "Club Profile" feature that enables you to store and automatically display station information not found in a callbook database, like OMISS number, 10-10 number, VIP status, etc.";
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 = '';
}
}