var fDesc=new Array(); fDesc[0] = "Australian Weather Stats is a small freeware application that polls real time weather statistics from the Australian Bureau of Meteorology and displays them in a number of ways on your computer Desktop.

It is only applicable to Australian Observations not other countries. There was a lack of good live Australian regional weather statistics / observations in other weather applications that this is designed to provide.

Australia is roughly the geographical size of the USA with only a small number of capital cities (7), thus capital city or major airport based observations are of little use as the stations are often some distance from the users in Australia."; 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 = ''; } }