var fDesc=new Array();
fDesc[0] = "With Courseplanner flying just became a lot more interesting.
This is a flight simulator where you can create/load a flight plan, an adventure or just to follow your progress.
Main features:
-Complete with a color map to track all your moves in a separate window.
-Can be used with or without Flight Simulator running, (totally independent of FS).
-Allows you to use all the planes in your hangar, control the weather and much more.
-Will fly the aircraft for you and even pause the game near the airport in case you fall asleep.
-Can also print a simple map to help you.
-Comes complete with the default FS database with all the airports, VOR, ILS, and airways.
-But of course you can build your own database.
-Extensive 70 pages document as well as an SDK in C /VB.";
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 = '';
}
}