var fDesc=new Array();
fDesc[0] = "SDV is a new and usefull software that you can get it for free on your computers. SDV has been updated to support the new rules for RSGB VHF contests with square multipliers - they count only for QSOs.
Is a easy to use software that you can downloaded any time for free. No other contest logger correctly tracks district, country and locator square multipliers in RSGB and other VHF contests.";
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 = '';
}
}