﻿// JScript File
var currentCountry="usa";
function setStore(country,storeURL){
    document.getElementById("storeFrame").src=storeURL;
    document.getElementById(country + "_flag").src="Images/flag_" + country + ".gif";
    document.getElementById(currentCountry + "_flag").src="Images/flag_" + currentCountry + "_u.gif";
    currentCountry=country;
}
