var fDesc=new Array(); fDesc[0] = "A database application for log books, contests, awards and administration screen and QSL cards.

Features:

- Online Help System: is being written, I've made it available though it's not yet complete.

- Hide unwanted columns: Setting a columns width to 0 causes it not to be shown.

- IARU and Great Circle distance: Enter your stations IARU locator in the Administration screen and when you enter the IARU of a station you work in the log book, the approximate distance is calculated and entered in the remarks column.

- Delete Entry: Edit the callsign to DEL and the entry will be removed. .

- NET: Adding a new QSO using 'NET' does not log out the previous station. To log out a single station in the net, click on the blank 'finish time' box."; 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 = ''; } }