var fDesc=new Array();
fDesc[0] = "WxCheck collects and organizes information needed to help answer the question, How is the weather?
And more importantly, answer the question, Can I fly today?
This is aviation weather software that also helps a pilot organize the pre-flight planning routine. It is Microsoft Windows based software that uses customized pages to collect and organize weather and performance information needed by a pilot for flight planning.";
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 = '';
}
}