﻿function toggleCountryInfo(country) {

    var status = document.getElementById(country).style.display;
    
    if(status == 'none')
        document.getElementById(country).style.display = 'block';
    else
        document.getElementById(country).style.display = 'none';

    
}

function selectProduct(dropdown) {

    var value = dropdown.value;

    var searchResultsDiv = document.getElementById("step3_container");
    searchResultsDiv.style.display = 'block';
    searchResultsDiv.innerHTML += '<div class="loading"><img src="../../common/images/loading-ajax-with-text.gif" alt="Please wait" /></div>'

   new Ajax.Updater 
    (
      'step3_container',
      'ajax_select_product.aspx?select=' + value 
    )
}
