var fDesc=new Array(); fDesc[0] = "Use this program to quickly identify those stations that are using LotW

User Enters Callsign and program searches the database for the callsign. If the callsign is in the database, the call turns green, indicating that the callsign is known to be a user of ARRL's LotW. If the Callsign List window is open, by clicking the list button, the highlighted area will move corresponding to the progress of typing in the callsign."; 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 = ''; } }