var fDesc=new Array(); fDesc[0] = "Severe Weather Growler is a weather alert monitoring service for Growl. This application should be able to send growl notifications to any Growl server.
This program polls the National Weather Service every 90 seconds to see if any new alerts have been posted. If so, you will be notified. Note that each alert type at the NWS is a different notification type within Growl. Therefore, you can set the type of notification for each type of alert."; 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 = ''; } }