var fDesc=new Array();
fDesc[0] = "Cli-Mate is the easiest and most convenient way to receive up-to-date weather information on your desktop. Keep on top of th eweather situation near your house. Cli-Mate can can retrieve weather forecasts from hundreds of cities and towns in all fifty states, US provinces, as well as many major cities in countries around the globe.
Cli-Mate is now one of the oldest (5 years!) weather gathering programs around... and while others have become bloated pieces of spy-ware, Cli-Mate is still 100% free, contains no advertisements, and provides the most advanced weather forecasting data on your desktop!";
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 = '';
}
}