function displayWindow1(url, width, height) {
 var Win = window.open(url,"displayWindow",'width=' + width + ',height=' + height + ',resizable=0,scrollbars=yes,menubar=no' );
}



function displayWindow(url, width, height) {

config='toolbar=no,location=no,directories=no,status=no,menubar=no,width=' + width +',height='+ height +''
config += 'scrollbars=no,resizable=no'

pop = window.open ('','pop',config)
pop.document.write('<body ><a href="javascript:window.close()">');
pop.document.write('<IMG SRC=' + url +' border=0 alt="Zamknij okno" >');
pop.document.write('<br ><span style="color:black; font-family:Verdana;FONT-SIZE: 7pt"><b>Zamknij okno</b></span></a>');
pop.document.close();
pop.document.focus();

}


      function chg_img(prov)
            {
                var ShowItem = document.getElementById("country_img");
                               ShowItem.style.backgroundImage = 'url(mapa/' + prov + '.gif)';
                                     
                                     return true;
            }

            function hd_img(prov)
            {
                var ShowItem = document.getElementById("country_img");
                  
                       ShowItem.style.backgroundImage = 'url(mapa/none.gif)';
                       
                     return true;
            }
 
 
 
 function chg_img1(prov)
            {
                var ShowItem = document.getElementById("country_img");
                  var LinkItem = document.getElementById("prov_" + prov);
                               ShowItem.style.backgroundImage = 'url(mapa/' + prov + '.gif)';
                              LinkItem.style.color = '#E77817';
                              return true;
            }

            function hd_img1(prov)
            {
                var ShowItem = document.getElementById("country_img");
                 var LinkItem = document.getElementById("prov_" + prov);
                ShowItem.style.backgroundImage = 'url(mapa/none.gif)';
               LinkItem.style.color = '#767A7C';
                     return true;
            }
 
 function szukajsp() {
   if (document.form.city.value=="") {
   alert("Wpisz szukaną frazę !");
   document.form.city.focus();
  return false;
  }
 return true;
 }