var fDesc=new Array();
fDesc[0] = "TurboWin contains observation checking routines which are applied on the observations before they are transmitted.
TurboWin is a user-friendly system with over 200 built-in quality checks.
It allows the automated compilation of observations on board ships and fixed sea stations, their downloading to disk and their subsequent transmission ashore and thence to a Meteorological Centre, by using Inmarsat, E-mail or other specific communication facilities.
The program assists the observer with many menus, pictures, photos, forms, help pages, output options, automated calculations etc..";
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 = '';
}
}