
	var voivodeship=new Array();

          voivodeship[1] = "dolnoslaskie";
          voivodeship[2] = "kujawsko-Pomorskie";
          voivodeship[3] = "lubelskie";
          voivodeship[4] = "lubuskie";
          voivodeship[5] = "lodzkie";
          voivodeship[6] = "malopolskie";
          voivodeship[7] = "mazowieckie";
          voivodeship[8] = "opolskie";
          voivodeship[9] = "podkarpackie";
          voivodeship[10] = "podlaskie";
          voivodeship[11] = "pomorskie";
          voivodeship[12] = "slaskie";
          voivodeship[13] = "swietokrzyskie";
          voivodeship[14] = "warminsko-mazurskie";
          voivodeship[15] = "wielkopolskie";
          voivodeship[16] = "zachodniopomorskie";

  function action_urzad(thisform) {
    var woj = thisform.woj.options[thisform.woj.selectedIndex].value;
    if(0 == woj) {
     window.alert("Prosze wybrać województwo.");  
     return false;
    }
    
    if(thisform.type[0].checked == true) {
      thisform.action = "http://msp.money.pl/znajdz_adres/urzedy_skarbowe/wojewodztwo," + voivodeship[woj] +"," + woj + ",urzedy,skarbowe.html";      
    }
    else if(thisform.type[1].checked == true) {
      thisform.action = "http://msp.money.pl/znajdz_adres/oddzialy_zus//wojewodztwo," + voivodeship[woj] +"," + woj + ",zus.html";      
    }
    else if(thisform.type[2].checked == true) {
      thisform.action = "http://msp.money.pl/znajdz_adres/krus/wojewodztwo," + voivodeship[woj] +"," + woj + ",krus.html";        
    }
    else if(thisform.type[3].checked == true) {
      thisform.action = "http://msp.money.pl/znajdz_adres/sady/wojewodztwo," + voivodeship[woj] +"," + woj + ",sady.html";        
    }   
    
    return true;
  }

