var fDesc=new Array();
fDesc[0] = "NOTAM Check is a powerful Windows based NOTAM software which checks and plots NOTAMs on to a map. It is intended for use as part of flight planning.
Over 1100 aerodromes, both civil and government (military), over 160 disused aerodromes, over 235 Danger Zones and over 320 navigation aids are stored into a database accurate to one arc minute.
Pre-flight Information Bulletins (PIBs) containing NOTAMs are downloaded from the Internet and decodable NOTAMs are simultaneously displayed on to a map of the UK.
NOTAMs are displayed as their true shape and not a 'circle of influence' derived from a Q-line as seen in other NOTAM plotting software.";
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 = '';
}
}