var fDesc=new Array(); fDesc[0] = "eZWeather is a simple application that gets the weather from accuweather.com. The temperature is displayed as an icon in tray window. The program has the ability to change Trillian's and Yahoo's away status messages to show the temperature, and the Winamp playing song."; 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 = ''; } }