var fDesc=new Array(); fDesc[0] = "Catfood Weather runs as a taskbar icon which is updated to show today's forecast. Hover your mouse over the icon to see current conditions, click the icon to bring up the seven day forecast window.
Catfood Weather provides a regularly updated seven day forecast on your desktop.
The icon also indicates if any weather watches or warnings are in effect for the forecast location."; 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 = ''; } }