var fDesc=new Array(); fDesc[0] = "Weather Center is a System Tray program that will display the current temperature near the clock and give you up to date weather information. This program will give you the current weather conditions for just about any where in the world.
The program interface will change with your local sunrise and sunset times. The images above show the night and daytime view."; 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 = ''; } }