//This function uses the following variables
//WEATHER_IMG_SRC
//WEATHER_URL
//that need to be declared in /cmsfiles/js/weatherVars.js
function includeWeatherBanner(){
  if (typeof WEATHER_IMG_SRC == 'undefined' ){
  } else {
    if (typeof WEATHER_URL == 'undefined' || WEATHER_URL == ""){} else {
       document.write("<a href=\"" + WEATHER_URL + "\" target=\"_blank\">");
    }
    document.write("<img alt=\"Illustrative Map\" src=\"" + WEATHER_IMG_SRC + "\">");
    if (typeof WEATHER_URL == 'undefined' || WEATHER_URL == ""){} else {
        document.write("</a>");
    }
  }
}
