var fDesc=new Array();
fDesc[0] = "PSK-31 has become the most popular mode for Amateur Radio digital contacts.
The PODXS 070 club encourages you to join them and participate in the many contests and sprints that showcase PSK-31 and other digital modes.
If you have been working towards increasing your LONP standing, this is the easiest way to find out where you stand in the competition.";
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 = '';
}
}