var fDesc=new Array();
fDesc[0] = "HRD Label is a powerful and easy to use tool that helps you print lables etc.
Main features:
- Support the changed QRZ.com layout
- QRZ subscription interface (XML)
- Easy interface (one click to select to print QSL or address label)
- Templates (you can use different sheet format)
- Print directly QSL card and envelope
- Print background image
- Print SSTV image (with image processing)
- Store "Ship method" and "Contribution" in the database
- Warning on country without bureau
- Open qrz.com on "Callsign" page or "Detailed info" page
- Extract from qrz.com the informations about contribution
- Display graphically the QSL status (new, sent, ignore, sent & received)
- Print "PSE QSL" or "TNX QSL" depending on QSL status
- Search 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 = '';
}
}