
/////////////////////// getCounty FN///////////////////////

	function getCounty(county){
	  $('titluZona').innerHTML = "<h3>" + county + "</h3>";
	  
	  $('jud').innerHTML = county;
	  $('link_nuantare').href = '/masini_nuantare/' + county + '.pdf';
	  
    new Ajax.Updater('asm', '/partners/asm/' + encodeURIComponent(county), {
      method: 'get',
      onComplete: function(){ 
        $('asm').style.display="none";
        Effect.Appear('asm');  }
    });	
    
    new Ajax.Updater('rtc', '/partners/rtc/' + encodeURIComponent(county), {
      method: 'get',
      onComplete: function(){ 
        $('rtc').style.display="none";
        Effect.Appear('rtc', { duration: 3.0 });  }
    });
    
    new Ajax.Updater('magazine', '/partners/shops/' + encodeURIComponent(county), {
      method: 'get',
      onComplete: function(){ 
        $('magazine').style.display="none";
        Effect.Appear('magazine', { duration: 3.0 });  },
      onSuccess: function(transport){
            var response = transport.responseText || "no response text";
            if(response == "no response text") {
              $('h2_magazine').innerHTML = '';
            }
            else {
              $('h2_magazine').innerHTML = '<h2>Magazine:</h2><br class="clear" />';
            }
          }
    });
    new Ajax.Updater('distribuitori', '/partners/distributors/' + encodeURIComponent(county), {
      method: 'get',
      onComplete: function(){ 
        $('distribuitori').style.display="none";
        Effect.Appear('distribuitori', { duration: 3.0 });  }
    });  
    
    /*
    if($('magazine').innerHTML == "") {
      $('h2_magazine').innerHTML = '';
    }
    else {
      $('h2_magazine').innerHTML = '<h2>Magazine:</h2><br class="clear" />';
    }
    */
	}