﻿function convertCurrency() {
    var c2c = document.getElementById("ctl00_dhCurCon_ddlCurrencyToConvert");
    var c2cCode = c2c.options[c2c.selectedIndex].text;
    var c2cRef = c2c.options[c2c.selectedIndex].value;
    var c2cIn = document.getElementById("ctl00_dhCurCon_ddlCurrencyToConvertIn");
    var c2cInCode = c2cIn.options[c2cIn.selectedIndex].text;
    var c2cInRef = c2cIn.options[c2cIn.selectedIndex].value;
    var tAm2Conv = document.getElementById("txtAmountToConvert");
    var spAic = document.getElementById("spAmountInCurrency");
    var spConvInfo = document.getElementById("spConversionInformation");
    if (!isNaN(tAm2Conv.value)) {
        spAic.innerHTML = (c2cInRef / c2cRef) * tAm2Conv.value + " "+c2cInCode;
        spConvInfo.innerHTML = "1" + c2cCode + " = " + (c2cInRef / c2cRef) + " " + c2cInCode;
    }
}