function switchLanguage(target) { var lang = target.value; var newUrl = top.location.pathname; newUrl = newUrl.replace( /^[http|https]?:\/\/[^\/]|\?.*$/g, '' )+'?lang='+lang; window.location = newUrl; } function forceCountry(target) { var value = target.value.split('|'); var country = value[0]; var lang = value[1]; var newUrl = top.location.pathname; newUrl = newUrl.replace( /^[http|https]?:\/\/[^\/]|\?.*$/g, '' )+'?lang='+lang+'&country='+country; window.location = newUrl; }