function PMtlDisplayWeather(){  var weather = {conditions: "Partiellement nuageux", temperature:'23.9', iconExtension:'gif', iconCode:'32', observationTime:'09 septembre 2015 02h00 HAE'}; if (document.getElementById('meteoWidget')!=null) {if (document.getElementById('meteoCondition')!=null) {document.getElementById('meteoCondition').innerHTML = weather.conditions + ',';}if (document.getElementById('meteoTemp')!=null) {document.getElementById('meteoTemp').innerHTML = weather.temperature + '°C';}if (document.getElementById('meteoImgTag')!=null) {document.getElementById('meteoImgTag').src = '//meteo.gc.ca/weathericons/small/' + weather.iconCode + '.png';}if (weather.temperature && weather.temperature != '') {document.getElementById('meteoWidget').style.display='block';}}}