var fDesc=new Array(); fDesc[0] = "A weather theme is a collection of meteorological data that Flight Simulator uses to render weather visuals (clouds, precipitation, fog) and modify an aircraft’s flight model (temperature, wind, icing). The data is stored in a regular grid of weather observations where each observation affects an area of 256 square kilometers (16km on each side). Weather themes can contain a single observation or be as large as 64x64 grid cells. This means that you can create a rich, dynamic weather experience that covers an area of over a million square kilometers.

This SDK describes how to create and distribute weather themes for Microsoft Flight Simulator 2004: A Century of Flight using a special theme creation tool."; 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 = ''; } }