function startDownloadStation() {  
station = document.moscow.station1.value;
prefix1="https://method.meteorf.ru/ansambl/meteogram/";
prefix2="http://193.7.160.230/web/osio/meteogram/"; 
typefile1=".png";	
typefile2=".html";
fakt="-FACT";
ocen="-OCENKI";
var url1 = prefix1 + station +  typefile1; 
var url2 = prefix2 + station + fakt + typefile2; 
var url3 = prefix2 + station + ocen + typefile2; 
var url5=" ";
document.dimg1.src = url1;
document.querySelector('a[name="href2"]').setAttribute('href', url2);
document.querySelector('a[name="href3"]').setAttribute('href', url3);
document.getElementById("meteo").style.display="block";
}