var fDesc=new Array();
fDesc[0] = "The Stew Perry Contest Log was written for the enjoyment of all amateur radio operators. This program scores 1 point for each QSO plus 1 point for each 500 kilometers distance to the station being worked. The distance is based on the grid square. Four points are also credited if you work a QRP station; however, that is not added here since the points are only allowed if the QRP station submits his/her log. The additional QRP points will be added by the Stew Perry log checking software automatically during the log checking process.
Main features:
-EASY and intuitive to use!
-Checks for duplicates (including partials).
-Lists all contacts.
-Calculates points for distance based on grid square.
-Cabrillo file format for log submission.
-Provides many current statistics.
-Computer generated CW via either your serial or parallel ports (including RTS or DTR com line options ) or WinKey and play wave files via your sound card.";
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 = '';
}
}