var fDesc=new Array();
fDesc[0] = "The IARU (International Amateur Radio Union) has a good working world wide QSL-service that allows radio amateurs to send and receive QSL-cards at low cost.
This QSL-service however can only work properly if you deliver your outgoing QSL-cards to your local QSL-manager sorted the right way.
QBuS (QSL Bureau Search) is a small application that helps you to sort your outgoing QSL-card properly.
Just enter a callsign (or prefix) and QBuS will tell you the correct QSL-bueau and the prefix you have to sort the QSL-card under.
In addition QBuS:
shows the DXCC (or WAE) entity of the call / prefix
allows QSL-manager lookup from the www.qslinfo.de database (internet connection required)
has a voice output: can give the requested information by voice (soundcard speakers required)
has a (automatic) update function (internet connection required)";
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 = '';
}
}