var fDesc=new Array(); fDesc[0] = "WeatherDan is a free weather application that runs in your system tray. The program can retrieve local weather for any configured ZIP code, auto-retrieve updated weather at a configured interval, animate up to 10 cached radar images, and more. The simple settings menu enables ZIP code changing without restarting the application."; 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 = ''; } }