     function imgOn(Name)
      {
        SwitchImg = "/Images/" + Name + "_on.gif"; 
        document.images[Name].src=SwitchImg;
      } 
      function imgOff(Name)
      {
        SwitchImg = "/Images/" + Name + ".gif";
        document.images[Name].src=SwitchImg;
     } 
     function SendToPopup(width,height,page,frompage)
     {
       features='width='+width+',height='+height+',scrollbars=yes,menubar=no,resizable=yes';
       url=page+"?URL="+frompage;
       winname="SendTo";
       _winid=window.open('',winname,features);
       setTimeout("_winid.location.href = '"+url+"'",200);
	    _winid.focus();
     }
     function OpenMapWindow(Town,State) 
      {
        msgWindow=window.open('/MapPage.php?' + Town + "," + State,'MapWindow');
      }
     function OpenWeatherWindow(Town,State,Zip) 
      {
        //msgWindow=window.open('/WeatherPage.php?Zip=' + Zip + '&City='+Town+'&State='+State,'WeatherWindow','resizable=1,width=650,height=625,scrollbars');
        msgWindow=window.open('/WeatherPage.php?' + Town + "," + State,'WeatherWindow','resizable=1,width=520,height=80,scrollbars');
      }