// JavaScript Document

function MatchShort1() {
IndexNum = document.form1.Country.selectedIndex;
document.form1.CountryCode.value = document.form1.Country.options[IndexNum].value;
}


function MatchCurr1() {
IndexNum = document.form1.CurrCountry.selectedIndex;
document.form1.Currency.value= document.form1.CurrCountry.options[IndexNum].value;
}


function MatchCurrC1() {
IndexNum = document.form1.CCurrCountry.selectedIndex;
document.form1.CCurrency.value = document.form1.CCurrCountry.options[IndexNum].value;
}
