var fDesc=new Array();
fDesc[0] = "MeteoReportWL is a weather report generator. It reads raw data from Weatherlink 5.2+ archives and stores the weather values in a SQLite database.
With the latest version the software has the following features :
- Temperature Range column in monthly and data range reports.
- Consecutive Dry Days in statistics report.
- Temperature max and Max Temperature min in statistics report.";
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 = '';
}
}