function DownloadWindForecast() {  	 
reg = document.moscow.region3.value; 	 
zabl = document.moscow.zabl3.value; 
prefix="https://method.meteorf.ru/ansambl/wind/"; 
typefile=".png";	
var urlwind = prefix + reg + zabl + typefile;   
document.dimg1.src = urlwind;
document.getElementById("meteo").style.display="none"; }
function DownloadWindFakt() {  	 
reg = document.moscow.region4.value; 	 
timen = document.moscow.time4.value; 
prefix="https://method.meteorf.ru/ansambl/wind/"; 
typefile=".png";	
var urlwind = prefix + reg + timen + typefile;   
document.dimg1.src = urlwind;
document.getElementById("meteo").style.display="none"; }

