var fDesc=new Array();
fDesc[0] = "VPLive is a software that connects to a Davis Vantage Pro 1 or 2 Weather Station console and displays the live data. It calculates the station pressure (i.e. actual pressure), altimeter pressure, and running averages needed to properly generate and send APRS/CWOP data.
It can run WeatherLink at regular intervals to allow WeatherLink to download the archive data from the console and write it to the archive file.";
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 = '';
}
}