var fDesc=new Array();
fDesc[0] = "Easy QSL is an application designed specifically for filling up paper QSL cards using a printer. It can load an ADIF log file and print the QSL cards with data for each selected QSO. All you have to do is design a Layout appropriate for your own QSL card, load the log file and hit Print. Supports ADIF import and export. Supports either single card printing, or batch printing for multiple QSOs.
Simple Layout editor, option to set the color for printed items, option to set the date and time format, displays a simple Band/Mode QSL Chart, showing which bands/modes are worked/confirmed for a DXCC entity.";
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 = '';
}
}