var fDesc=new Array();
fDesc[0] = "Asynchron Communication: Communication with the Web is asynchronous, so that the work flow is not disturbed by bad or missing connection.
AAT adapted to the 2011 rules.
Multi selection of waypoints.
DCW Map demonstration accelerated.
Glider index saved with flight track. Default comes from active pilot of the pilot list .";
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 = '';
}
}