var fDesc=new Array(); fDesc[0] = "The Rain Records software package is designed to allow you to enter the amount of rain that falls by date, and then analyze that data by producing graphs and statistics.

Simply specify the year and month for which data is to be entered at the top of the screen (which defaults to the current month). Then type in rainfall figures, and whether a frost occurred. You can optionally type in temperature Min & Max figures, and general comments about the weather."; 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 = ''; } }