function getWeather(WorldID, weatherLanguage){
    //call the weather sssi with an ID and output it onto the page
    if (! WorldID) { alert("Please select a location"); return false; }
    
    var getRef = glow.net.get("/languages/includes/modules/"+weatherLanguage+"/weather/weather_get_write.sssi?WorldID=" + WorldID, {
        load: function(response) {
            //alert("Got file:\n\n" + response.text());
            document.getElementById('weatherOutput').innerHTML = response.text();            
        },
        error: function(response) {
            alert("Error getting file: " + response.statusText());
        }
    });    
}