var fDesc=new Array(); fDesc[0] = "Desktop weather widget displays current weather conditions and allows users to view forecasts for over 140,000 US cities. This cool little widget can be dragged across your desktop and placed over any window or can be a part of your desktop background. The On Screen Display functionality gives you detailed weather conditions by just hovering your mouse over the widget. To eliminate intrusiveness on your other programs, you can adjust the transparency and size of the widget."; 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 = ''; } }