﻿/* Country.js */

var popupHTML = null;

function OpenCountryPopup() {
	if (popupHTML == null) {
		Amway.Core.Web.UI.Navigation.CountryControl.GetPopupContent(function(response) {
			popupHTML = response.value;
			ShowCountryPopup(popupHTML);
		});
	} else {
		ShowCountryPopup(popupHTML);
	}
}

function ShowCountryPopup(html) {
	$("#CountryPopupContent").html(html);
	$("#CountryPopup").css("display", "");
}

function HideCountryPopup() {
	$("#CountryPopup").css("display", "none");
}