﻿function ShowCurrencyPopup() {
    document.getElementById("dvCurrencyPopup").style.display = "block";
}

function HideCurrencyPopup() {
    document.getElementById("dvCurrencyPopup").style.display = "none";
}
