var fDesc=new Array();
fDesc[0] = "WSI Fusion™ is a proactive operations management solution that fuses public and proprietary weather information, airspace constraints, flight information, and operational data into a unified and clear operational picture to streamline and enhance operational decision making.
WSI Fusion™ helps dispatchers, operations personnel, and managers stay aware and ahead of changing conditions, mitigate the impact of disruptive events, and ultimately stay on plan, on time, and on budget.";
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 = '';
}
}