var fDesc=new Array(); fDesc[0] = "MeteoInfo is a program designed to view and analyze meteorological and spatial data interactively. The program supports meteorological data formats such as GrADS binary grid and station data, NetCDF grid data, GRIB edition 1 and 2 data, HDF EOS5 data and METAR."; 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 = ''; } }