var fDesc=new Array(); fDesc[0] = "DAILYET is a simple 'calculator' for estimating daily reference evapotranspiration (ETo) using data collected from a conventional weather station. The minimum input data required are maximum and minimum air temperature, relative humidity, sunshine duration and wind speed. The program runs under any version of Windows and can accept data in different forms, e.g. wet & dry bulb temperatures in place of relative humidity, sunshine duration in place of solar radiation."; 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 = ''; } }