// JavaScript Document

  var selectedCountryInfo = null;
  function showDistributorORIGINAL()
  {
     if (selectedCountryInfo != null)
        selectedCountryInfo.style.display = 'none';
     var id = document.getElementById('distributorSelect').value;
     selectedCountryInfo = document.getElementById(id);
     if (selectedCountryInfo != null)
        selectedCountryInfo.style.display = 'block';
  }
  
   function showDistributor(evt)
   {
      if (evt == null)
         evt = event;
 
     
       
      var target = evt.target;
      if (target == null)
         target = evt.srcElement;

      // Redirection?
      if (target.value != null) {
         if (target.value.substring(0,9) == "redirect|") {
            newurl = target.value.substring(9);
            document.location = newurl;
         }
      }
                  
      if (selectedCountryInfo != null)
         selectedCountryInfo.style.display = "none";
      selectedCountryInfo = document.getElementById(target.value);
      if (selectedCountryInfo != null)
         selectedCountryInfo.style.display = "block";
   }

