var fDesc=new Array();
fDesc[0] = "There are many purposes to the PropnetPSK project but they all focus on enhancing the communication
art as it applies to the PSK31 modulation schema. The PNP client offers several leading-edge features
to assist in this desire. The PNP client has the ability to automatically control your amateur radio station. It has three basic
functions: Transmitting, Receiving and Reporting.";
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 = '';
}
}