var fDesc=new Array();
fDesc[0] = "This program is for the existing and future DX-pedition operators. The Pileup settings dialog that opens when you start a pileup allows you to set the parameters of the pileup. Additionally, you can set the number of callers with values between 1 and 1000. You can either select one of the per-defined values from the drop-down list, or type a custom value in.";
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 = '';
}
}